More unfinished work

This commit is contained in:
Alessandro Ranellucci 2013-11-22 02:16:10 +01:00
parent 518798beb3
commit df8d889481
16 changed files with 74 additions and 48 deletions

View file

@ -21,7 +21,7 @@ class MultiPoint
virtual Lines lines() const = 0;
double length() const;
bool is_valid() const;
void simplify(double tolerance);
static Points _douglas_peucker(Points &points, double tolerance);
#ifdef SLIC3RXS
void from_SV(SV* poly_sv);
@ -29,9 +29,6 @@ class MultiPoint
SV* to_AV();
SV* to_SV_pureperl() const;
#endif
private:
static Points _douglas_peucker(Points &points, double tolerance);
};
}