1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2025-01-09 01:20:15 +02:00
cae-tools/ptrude/ptrude.c
2011-07-28 22:31:25 -03:00

16 lines
184 B
C

#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;
}