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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/xsp/ExPolygonCollection.xsp')
-rw-r--r--xs/xsp/ExPolygonCollection.xsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xs/xsp/ExPolygonCollection.xsp b/xs/xsp/ExPolygonCollection.xsp
index 902494b34..4ae1a9156 100644
--- a/xs/xsp/ExPolygonCollection.xsp
+++ b/xs/xsp/ExPolygonCollection.xsp
@@ -18,11 +18,11 @@
int count()
%code{% RETVAL = THIS->expolygons.size(); %};
bool contains_point(Point* point)
- %code{% RETVAL = THIS->contains_point(*point); %};
+ %code{% RETVAL = THIS->contains(*point); %};
bool contains_line(Line* line)
- %code{% RETVAL = THIS->contains_line(*line); %};
+ %code{% RETVAL = THIS->contains(*line); %};
bool contains_polyline(Polyline* polyline)
- %code{% RETVAL = THIS->contains_polyline(*polyline); %};
+ %code{% RETVAL = THIS->contains(*polyline); %};
void simplify(double tolerance);
Polygons polygons()
%code{% RETVAL = *THIS; %};