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:
authorbubnikv <bubnikv@gmail.com>2017-01-19 15:35:55 +0300
committerbubnikv <bubnikv@gmail.com>2017-01-19 15:35:55 +0300
commite016c4e423a468b7351b7e03a49e42493bab0242 (patch)
treebd8255aec0bc3b795a5ad93027f5fcdecb2d4d26 /xs/xsp/typemap.xspt
parente6b441eea45029014ce928a7ffcccc78c906a63c (diff)
New extrusion class: ExtrusionMultiPath
This is similar to an ExtrusionLoop, but it is open. It may contain multiple chained paths with differing parameters. This allows one to have a hierarchy of paths, where the ExtrusionEntityCollection will be chained by the G-code generator, but ExtrusionMultiPath will not.
Diffstat (limited to 'xs/xsp/typemap.xspt')
-rw-r--r--xs/xsp/typemap.xspt3
1 files changed, 3 insertions, 0 deletions
diff --git a/xs/xsp/typemap.xspt b/xs/xsp/typemap.xspt
index c9c3be5ae..e32271ac9 100644
--- a/xs/xsp/typemap.xspt
+++ b/xs/xsp/typemap.xspt
@@ -78,6 +78,9 @@
%typemap{ExtrusionEntityCollection*};
%typemap{Ref<ExtrusionEntityCollection>}{simple};
%typemap{Clone<ExtrusionEntityCollection>}{simple};
+%typemap{ExtrusionMultiPath*};
+%typemap{Ref<ExtrusionMultiPath>}{simple};
+%typemap{Clone<ExtrusionMultiPath>}{simple};
%typemap{ExtrusionPath*};
%typemap{Ref<ExtrusionPath>}{simple};
%typemap{Clone<ExtrusionPath>}{simple};