Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/xsp/Polygon.xsp')
-rw-r--r--xs/xsp/Polygon.xsp4
1 files changed, 0 insertions, 4 deletions
diff --git a/xs/xsp/Polygon.xsp b/xs/xsp/Polygon.xsp
index bc4d412d9..873c4bcc9 100644
--- a/xs/xsp/Polygon.xsp
+++ b/xs/xsp/Polygon.xsp
@@ -34,12 +34,8 @@
bool contains_point(Point* point)
%code{% RETVAL = THIS->contains(*point); %};
Polygons simplify(double tolerance);
- Polygons triangulate_convex()
- %code{% THIS->triangulate_convex(&RETVAL); %};
Clone<Point> centroid();
Clone<BoundingBox> bounding_box();
- Clone<Point> point_projection(Point* point)
- %code{% RETVAL = THIS->point_projection(*point); %};
Clone<Point> first_intersection(Line* line)
%code{%
Point p;