mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2025-04-21 12:27:27 +03:00
ptrude/: path extrusion, work in progress
This commit is contained in:
15
ptrude/ptrude.c
Normal file
15
ptrude/ptrude.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include "path.h"
|
||||
|
||||
|
||||
int main(void)
|
||||
{
|
||||
const struct path *path;
|
||||
|
||||
path = load_path(stdin);
|
||||
path = round_path(path, 1, 0.1);
|
||||
save_path(stdout, path);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user