mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2024-12-23 12:01:08 +02:00
54d8549fa2
- cameo/path.h, cameo/path.c (offset_point, path_offset): added "left" argument to indicate the handedness - cameo/path.h, cameo/path.c (path_tool_is_left): new function to determine which way the path turns - cameo/cameo.c: auto-detect handedness and instruct path_offset accordingly
39 lines
941 B
C
39 lines
941 B
C
/*
|
|
* path.h - 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 PATH_H
|
|
#define PATH_H
|
|
|
|
|
|
struct point {
|
|
double x, y, z; /* mm */
|
|
struct point *next;
|
|
};
|
|
|
|
struct path {
|
|
struct point *first, *last;
|
|
double r_tool; /* mm */
|
|
struct path *next;
|
|
};
|
|
|
|
|
|
struct path *path_new(double r_tool);
|
|
void path_add(struct path *path, double x, double y, double z);
|
|
struct path *path_reverse(const struct path *path);
|
|
int path_direction(const struct path *path);
|
|
int path_tool_is_left(const struct path *path);
|
|
struct path *path_offset(const struct path *path, int left, int notch);
|
|
void path_free(struct path *path);
|
|
|
|
#endif /* !PATH_H */
|