mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 06:04:01 -06:00
Recursive pruning. Some more unit tests
This commit is contained in:
parent
33da6adc3c
commit
2a73ab988f
7 changed files with 86 additions and 98 deletions
|
@ -20,8 +20,9 @@ class MedialAxis {
|
|||
public:
|
||||
Points points;
|
||||
Lines lines;
|
||||
double width;
|
||||
MedialAxis(double _width) : width(_width) {};
|
||||
double max_width;
|
||||
double min_width;
|
||||
MedialAxis(double _max_width, double _min_width) : max_width(_max_width), min_width(_min_width) {};
|
||||
void build(Polylines* polylines);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue