mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2024-12-23 13:13:55 +02:00
16 lines
184 B
C
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;
|
||
|
}
|