remove everything perl sided

This commit is contained in:
Michael Kirsch 2019-05-18 11:43:41 +02:00 committed by Joseph Lenox
parent 545aa3c57f
commit 3782fad1dc
5 changed files with 0 additions and 20 deletions

View File

@ -261,6 +261,5 @@ xsp/SupportMaterial.xsp
xsp/Surface.xsp xsp/Surface.xsp
xsp/SurfaceCollection.xsp xsp/SurfaceCollection.xsp
xsp/TriangleMesh.xsp xsp/TriangleMesh.xsp
xsp/TransformationMatrix.xsp
xsp/typemap.xspt xsp/typemap.xspt
xsp/XS.xsp xsp/XS.xsp

View File

@ -335,8 +335,6 @@ ModelMaterial::attributes()
%code%{ THIS->offset = *offset; %}; %code%{ THIS->offset = *offset; %};
void set_local_trafo_matrix(bool dont_translate); void set_local_trafo_matrix(bool dont_translate);
Ref<TransformationMatrix> local_trafo()
%code%{ RETVAL = &THIS->trafo; %};
void transform_mesh(TriangleMesh* mesh, bool dont_translate) const; void transform_mesh(TriangleMesh* mesh, bool dont_translate) const;

View File

@ -1,12 +0,0 @@
%module{Slic3r::XS};
%{
#include <xsinit.h>
#include "libslic3r/TransformationMatrix.hpp"
%}
%name{Slic3r::TransformationMatrix} class TransformationMatrix {
TransformationMatrix();
~TransformationMatrix();
};

View File

@ -57,9 +57,6 @@ TriangleMesh* O_OBJECT_SLIC3R
Ref<TriangleMesh> O_OBJECT_SLIC3R_T Ref<TriangleMesh> O_OBJECT_SLIC3R_T
Clone<TriangleMesh> O_OBJECT_SLIC3R_T Clone<TriangleMesh> O_OBJECT_SLIC3R_T
TransformationMatrix* O_OBJECT_SLIC3R
Ref<TransformationMatrix> O_OBJECT_SLIC3R_T
SLAPrint* O_OBJECT_SLIC3R SLAPrint* O_OBJECT_SLIC3R
Ref<SLAPrint> O_OBJECT_SLIC3R_T Ref<SLAPrint> O_OBJECT_SLIC3R_T
Clone<SLAPrint> O_OBJECT_SLIC3R_T Clone<SLAPrint> O_OBJECT_SLIC3R_T

View File

@ -88,8 +88,6 @@
%typemap{TriangleMesh*}; %typemap{TriangleMesh*};
%typemap{Ref<TriangleMesh>}{simple}; %typemap{Ref<TriangleMesh>}{simple};
%typemap{Clone<TriangleMesh>}{simple}; %typemap{Clone<TriangleMesh>}{simple};
%typemap{TransformationMatrix*};
%typemap{Ref<TransformationMatrix>}{simple};
%typemap{PolylineCollection*}; %typemap{PolylineCollection*};
%typemap{Ref<PolylineCollection>}{simple}; %typemap{Ref<PolylineCollection>}{simple};
%typemap{Clone<PolylineCollection>}{simple}; %typemap{Clone<PolylineCollection>}{simple};