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/MotionPlanner.xsp')
-rw-r--r--xs/xsp/MotionPlanner.xsp15
1 files changed, 0 insertions, 15 deletions
diff --git a/xs/xsp/MotionPlanner.xsp b/xs/xsp/MotionPlanner.xsp
deleted file mode 100644
index d93ed09ea..000000000
--- a/xs/xsp/MotionPlanner.xsp
+++ /dev/null
@@ -1,15 +0,0 @@
-%module{Slic3r::XS};
-
-%{
-#include <xsinit.h>
-#include "libslic3r/MotionPlanner.hpp"
-%}
-
-%name{Slic3r::MotionPlanner} class MotionPlanner {
- MotionPlanner(ExPolygons islands);
- ~MotionPlanner();
-
- int islands_count();
- Clone<Polyline> shortest_path(Point* from, Point* to)
- %code%{ RETVAL = THIS->shortest_path(*from, *to); %};
-};