mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2025-04-21 12:27:27 +03:00
cameo: adding support for dril/mill substitutions (in progress)
- Makefile (OBJS): added shape.o - README: added section for drill/mill substitutions - lang.l, lang.y: added commands "drill", "empty", "mill", "remainder", and "reset" - lang.y (clear_paths): moved freeing of all paths from "clean" to shared function clear_paths - ops.h, ops.c (try_drill, try_mill): helper functions for "drill" and "mill" commands - shape.h. shape.c (slot, circle): functions to generate toolpaths for basic shapes
This commit is contained in:
@@ -14,10 +14,11 @@
|
||||
#ifndef OPS_H
|
||||
#define OPS_H
|
||||
|
||||
|
||||
#include "path.h"
|
||||
|
||||
|
||||
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);
|
||||
|
||||
#endif /* !OPS_H */
|
||||
|
||||
Reference in New Issue
Block a user