mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2024-12-23 08:25:31 +02:00
3ae3d6cdd3
- README, lang.l, lang.y: renamed the "tool" command to "offset" - README: documented "offset" - ops.h, ops.c (tool_comp_paths), cameo.c (main), lang.y: added parameter to tool_comp_paths to treat all paths as internal - lang.l, lang.y: added option "inside" to the "offset" command - lang.y: "offset" can now take multiple options in any order
24 lines
529 B
C
24 lines
529 B
C
/*
|
|
* ops.h - Higher-level toolpath operations
|
|
*
|
|
* Written 2010 by Werner Almesberger
|
|
* Copyright 2010 Werner Almesberger
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
|
|
#ifndef OPS_H
|
|
#define OPS_H
|
|
|
|
|
|
#include "path.h"
|
|
|
|
|
|
void tool_comp_paths(struct path *paths, int dog_bone, int all_inside);
|
|
|
|
#endif /* !OPS_H */
|