1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-31 11:15:52 +00:00

Bugfix: crash in some circumstances when avoid_crossing_perimeters is enabled. #2266

This commit is contained in:
Alessandro Ranellucci
2014-10-15 00:59:26 +02:00
parent 39b41fda12
commit 6b8f03ff1c
3 changed files with 16 additions and 1 deletions
+2 -1
View File
@@ -8,7 +8,8 @@
%name{Slic3r::MotionPlanner} class MotionPlanner {
MotionPlanner(ExPolygons islands);
~MotionPlanner();
int islands_count();
Polyline* shortest_path(Point* from, Point* to)
%code%{ RETVAL = new Polyline(); THIS->shortest_path(*from, *to, RETVAL); %};
};