1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2025-04-21 12:27:27 +03:00

cameo: added optimization of movements between tool paths

- ops.h, ops.c (optimize_paths): reorder toolpaths to reduce the distance
  between them
- lang.l, lang.y: added command "optimize"
- README: documented "optimize"
This commit is contained in:
Werner Almesberger
2010-12-16 14:19:46 -03:00
parent ffaded7f48
commit 57b4e276e5
5 changed files with 62 additions and 1 deletions

View File

@@ -20,5 +20,6 @@
void tool_comp_paths(struct path *paths, int dog_bone, int all_inside);
struct path *try_drill(struct path *path, double d_min, double d_max);
struct path *try_mill(struct path *path, double diam, double step);
struct path *optimize_paths(struct path *paths);
#endif /* !OPS_H */