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
path: root/xs/xsp
diff options
context:
space:
mode:
Diffstat (limited to 'xs/xsp')
-rw-r--r--xs/xsp/BoundingBox.xsp4
-rw-r--r--xs/xsp/Clipper.xsp2
-rw-r--r--xs/xsp/Config.xsp2
-rw-r--r--xs/xsp/ExPolygon.xsp2
-rw-r--r--xs/xsp/ExPolygonCollection.xsp2
-rw-r--r--xs/xsp/Extruder.xsp2
-rw-r--r--xs/xsp/ExtrusionEntityCollection.xsp2
-rw-r--r--xs/xsp/ExtrusionLoop.xsp2
-rw-r--r--xs/xsp/ExtrusionPath.xsp4
-rw-r--r--xs/xsp/Flow.xsp2
-rw-r--r--xs/xsp/Geometry.xsp2
-rw-r--r--xs/xsp/Layer.xsp3
-rw-r--r--xs/xsp/Line.xsp4
-rw-r--r--xs/xsp/Model.xsp4
-rw-r--r--xs/xsp/MotionPlanner.xsp2
-rw-r--r--xs/xsp/PlaceholderParser.xsp2
-rw-r--r--xs/xsp/Point.xsp6
-rw-r--r--xs/xsp/Polygon.xsp6
-rw-r--r--xs/xsp/Polyline.xsp6
-rw-r--r--xs/xsp/PolylineCollection.xsp2
-rw-r--r--xs/xsp/Print.xsp4
-rw-r--r--xs/xsp/Surface.xsp4
-rw-r--r--xs/xsp/SurfaceCollection.xsp2
-rw-r--r--xs/xsp/TriangleMesh.xsp2
24 files changed, 36 insertions, 37 deletions
diff --git a/xs/xsp/BoundingBox.xsp b/xs/xsp/BoundingBox.xsp
index 5a4368b88..c368c0c18 100644
--- a/xs/xsp/BoundingBox.xsp
+++ b/xs/xsp/BoundingBox.xsp
@@ -2,8 +2,8 @@
%{
#include <myinit.h>
-#include "BoundingBox.hpp"
-#include "Point.hpp"
+#include "libslic3r/BoundingBox.hpp"
+#include "libslic3r/Point.hpp"
%}
%name{Slic3r::Geometry::BoundingBox} class BoundingBox {
diff --git a/xs/xsp/Clipper.xsp b/xs/xsp/Clipper.xsp
index 43a30a406..fc82ed88a 100644
--- a/xs/xsp/Clipper.xsp
+++ b/xs/xsp/Clipper.xsp
@@ -3,7 +3,7 @@
%{
#include <myinit.h>
#include "clipper.hpp"
-#include "ClipperUtils.hpp"
+#include "libslic3r/ClipperUtils.hpp"
%}
%package{Slic3r::Geometry::Clipper};
diff --git a/xs/xsp/Config.xsp b/xs/xsp/Config.xsp
index f96f45b8a..4c56e10c8 100644
--- a/xs/xsp/Config.xsp
+++ b/xs/xsp/Config.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "PrintConfig.hpp"
+#include "libslic3r/PrintConfig.hpp"
%}
%name{Slic3r::Config} class DynamicPrintConfig {
diff --git a/xs/xsp/ExPolygon.xsp b/xs/xsp/ExPolygon.xsp
index aefbd1aed..ef43e3514 100644
--- a/xs/xsp/ExPolygon.xsp
+++ b/xs/xsp/ExPolygon.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "ExPolygon.hpp"
+#include "libslic3r/ExPolygon.hpp"
%}
%name{Slic3r::ExPolygon} class ExPolygon {
diff --git a/xs/xsp/ExPolygonCollection.xsp b/xs/xsp/ExPolygonCollection.xsp
index c718c7ebc..a93b27dda 100644
--- a/xs/xsp/ExPolygonCollection.xsp
+++ b/xs/xsp/ExPolygonCollection.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "ExPolygonCollection.hpp"
+#include "libslic3r/ExPolygonCollection.hpp"
%}
%name{Slic3r::ExPolygon::Collection} class ExPolygonCollection {
diff --git a/xs/xsp/Extruder.xsp b/xs/xsp/Extruder.xsp
index d80b34d62..582b39b99 100644
--- a/xs/xsp/Extruder.xsp
+++ b/xs/xsp/Extruder.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "Extruder.hpp"
+#include "libslic3r/Extruder.hpp"
%}
%name{Slic3r::Extruder} class Extruder {
diff --git a/xs/xsp/ExtrusionEntityCollection.xsp b/xs/xsp/ExtrusionEntityCollection.xsp
index b8c65c87f..fa1d26eed 100644
--- a/xs/xsp/ExtrusionEntityCollection.xsp
+++ b/xs/xsp/ExtrusionEntityCollection.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "ExtrusionEntityCollection.hpp"
+#include "libslic3r/ExtrusionEntityCollection.hpp"
%}
%name{Slic3r::ExtrusionPath::Collection} class ExtrusionEntityCollection {
diff --git a/xs/xsp/ExtrusionLoop.xsp b/xs/xsp/ExtrusionLoop.xsp
index 489bca03a..1256d7593 100644
--- a/xs/xsp/ExtrusionLoop.xsp
+++ b/xs/xsp/ExtrusionLoop.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "ExtrusionEntity.hpp"
+#include "libslic3r/ExtrusionEntity.hpp"
%}
%name{Slic3r::ExtrusionLoop} class ExtrusionLoop {
diff --git a/xs/xsp/ExtrusionPath.xsp b/xs/xsp/ExtrusionPath.xsp
index df3813d51..d3a48ac24 100644
--- a/xs/xsp/ExtrusionPath.xsp
+++ b/xs/xsp/ExtrusionPath.xsp
@@ -2,8 +2,8 @@
%{
#include <myinit.h>
-#include "ExtrusionEntity.hpp"
-#include "ExtrusionEntityCollection.hpp"
+#include "libslic3r/ExtrusionEntity.hpp"
+#include "libslic3r/ExtrusionEntityCollection.hpp"
%}
%name{Slic3r::ExtrusionPath} class ExtrusionPath {
diff --git a/xs/xsp/Flow.xsp b/xs/xsp/Flow.xsp
index 09c6fd576..805c1a7a1 100644
--- a/xs/xsp/Flow.xsp
+++ b/xs/xsp/Flow.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "Flow.hpp"
+#include "libslic3r/Flow.hpp"
%}
%name{Slic3r::Flow} class Flow {
diff --git a/xs/xsp/Geometry.xsp b/xs/xsp/Geometry.xsp
index acbfb0875..ddfa0a369 100644
--- a/xs/xsp/Geometry.xsp
+++ b/xs/xsp/Geometry.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "Geometry.hpp"
+#include "libslic3r/Geometry.hpp"
%}
diff --git a/xs/xsp/Layer.xsp b/xs/xsp/Layer.xsp
index 8bdbef54f..b758989e6 100644
--- a/xs/xsp/Layer.xsp
+++ b/xs/xsp/Layer.xsp
@@ -2,8 +2,7 @@
%{
#include <myinit.h>
-#include "Layer.hpp"
-#include "perlglue.hpp"
+#include "libslic3r/Layer.hpp"
%}
%name{Slic3r::Layer::Region} class LayerRegion {
diff --git a/xs/xsp/Line.xsp b/xs/xsp/Line.xsp
index 22bd8e9e9..d0552315f 100644
--- a/xs/xsp/Line.xsp
+++ b/xs/xsp/Line.xsp
@@ -2,8 +2,8 @@
%{
#include <myinit.h>
-#include "Line.hpp"
-#include "Polyline.hpp"
+#include "libslic3r/Line.hpp"
+#include "libslic3r/Polyline.hpp"
%}
%name{Slic3r::Line} class Line {
diff --git a/xs/xsp/Model.xsp b/xs/xsp/Model.xsp
index aaf5c1e75..8947558eb 100644
--- a/xs/xsp/Model.xsp
+++ b/xs/xsp/Model.xsp
@@ -2,8 +2,8 @@
%{
#include <myinit.h>
-#include "Model.hpp"
-#include "PrintConfig.hpp"
+#include "libslic3r/Model.hpp"
+#include "libslic3r/PrintConfig.hpp"
%}
%name{Slic3r::Model} class Model {
diff --git a/xs/xsp/MotionPlanner.xsp b/xs/xsp/MotionPlanner.xsp
index 57abef937..ad29bc0f7 100644
--- a/xs/xsp/MotionPlanner.xsp
+++ b/xs/xsp/MotionPlanner.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "MotionPlanner.hpp"
+#include "libslic3r/MotionPlanner.hpp"
%}
%name{Slic3r::MotionPlanner} class MotionPlanner {
diff --git a/xs/xsp/PlaceholderParser.xsp b/xs/xsp/PlaceholderParser.xsp
index 1f027a0d7..4b508f77a 100644
--- a/xs/xsp/PlaceholderParser.xsp
+++ b/xs/xsp/PlaceholderParser.xsp
@@ -3,7 +3,7 @@
%{
#include <myinit.h>
#include <vector>
-#include "PlaceholderParser.hpp"
+#include "libslic3r/PlaceholderParser.hpp"
%}
%name{Slic3r::GCode::PlaceholderParser} class PlaceholderParser {
diff --git a/xs/xsp/Point.xsp b/xs/xsp/Point.xsp
index 21c8d9ab1..774b2fc1a 100644
--- a/xs/xsp/Point.xsp
+++ b/xs/xsp/Point.xsp
@@ -2,9 +2,9 @@
%{
#include <myinit.h>
-#include "Point.hpp"
-#include "Polygon.hpp"
-#include "Polyline.hpp"
+#include "libslic3r/Point.hpp"
+#include "libslic3r/Polygon.hpp"
+#include "libslic3r/Polyline.hpp"
%}
%name{Slic3r::Point} class Point {
diff --git a/xs/xsp/Polygon.xsp b/xs/xsp/Polygon.xsp
index cabf62adc..653691e49 100644
--- a/xs/xsp/Polygon.xsp
+++ b/xs/xsp/Polygon.xsp
@@ -2,9 +2,9 @@
%{
#include <myinit.h>
-#include "BoundingBox.hpp"
-#include "Polygon.hpp"
-#include "BoundingBox.hpp"
+#include "libslic3r/BoundingBox.hpp"
+#include "libslic3r/Polygon.hpp"
+#include "libslic3r/BoundingBox.hpp"
%}
%name{Slic3r::Polygon} class Polygon {
diff --git a/xs/xsp/Polyline.xsp b/xs/xsp/Polyline.xsp
index e43405df5..e97897719 100644
--- a/xs/xsp/Polyline.xsp
+++ b/xs/xsp/Polyline.xsp
@@ -2,9 +2,9 @@
%{
#include <myinit.h>
-#include "BoundingBox.hpp"
-#include "ClipperUtils.hpp"
-#include "Polyline.hpp"
+#include "libslic3r/BoundingBox.hpp"
+#include "libslic3r/ClipperUtils.hpp"
+#include "libslic3r/Polyline.hpp"
%}
%name{Slic3r::Polyline} class Polyline {
diff --git a/xs/xsp/PolylineCollection.xsp b/xs/xsp/PolylineCollection.xsp
index d5ad4f77f..f512bbb63 100644
--- a/xs/xsp/PolylineCollection.xsp
+++ b/xs/xsp/PolylineCollection.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "PolylineCollection.hpp"
+#include "libslic3r/PolylineCollection.hpp"
%}
%name{Slic3r::Polyline::Collection} class PolylineCollection {
diff --git a/xs/xsp/Print.xsp b/xs/xsp/Print.xsp
index 39a094e55..330bc6b9a 100644
--- a/xs/xsp/Print.xsp
+++ b/xs/xsp/Print.xsp
@@ -2,8 +2,8 @@
%{
#include <myinit.h>
-#include "Print.hpp"
-#include "PlaceholderParser.hpp"
+#include "libslic3r/Print.hpp"
+#include "libslic3r/PlaceholderParser.hpp"
%}
%package{Slic3r::Print::State};
diff --git a/xs/xsp/Surface.xsp b/xs/xsp/Surface.xsp
index 9aaa8a2fb..11c7ec744 100644
--- a/xs/xsp/Surface.xsp
+++ b/xs/xsp/Surface.xsp
@@ -2,8 +2,8 @@
%{
#include <myinit.h>
-#include "Surface.hpp"
-#include "ClipperUtils.hpp"
+#include "libslic3r/Surface.hpp"
+#include "libslic3r/ClipperUtils.hpp"
%}
%name{Slic3r::Surface} class Surface {
diff --git a/xs/xsp/SurfaceCollection.xsp b/xs/xsp/SurfaceCollection.xsp
index 77295e881..ea6a6b7bf 100644
--- a/xs/xsp/SurfaceCollection.xsp
+++ b/xs/xsp/SurfaceCollection.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "SurfaceCollection.hpp"
+#include "libslic3r/SurfaceCollection.hpp"
%}
%name{Slic3r::Surface::Collection} class SurfaceCollection {
diff --git a/xs/xsp/TriangleMesh.xsp b/xs/xsp/TriangleMesh.xsp
index 7baa50644..c6f7f7d04 100644
--- a/xs/xsp/TriangleMesh.xsp
+++ b/xs/xsp/TriangleMesh.xsp
@@ -2,7 +2,7 @@
%{
#include <myinit.h>
-#include "TriangleMesh.hpp"
+#include "libslic3r/TriangleMesh.hpp"
%}
%name{Slic3r::TriangleMesh} class TriangleMesh {