2010-12-14 19:15:52 +02:00
|
|
|
/*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
|
2010-12-15 04:37:31 +02:00
|
|
|
void tool_comp_paths(struct path *paths, int dog_bone, int all_inside);
|
2010-12-14 19:15:52 +02:00
|
|
|
|
|
|
|
#endif /* !OPS_H */
|