Recursive pruning. Some more unit tests

This commit is contained in:
Alessandro Ranellucci 2014-03-09 17:46:02 +01:00
parent 33da6adc3c
commit 2a73ab988f
7 changed files with 86 additions and 98 deletions

View file

@ -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: