expose mesh transform cloning to perl

This commit is contained in:
Michael Kirsch 2019-07-14 00:13:52 +02:00 committed by Joseph Lenox
parent a9a14225b2
commit 89ed376553

View File

@ -20,6 +20,8 @@
void align_to_bed();
void transform(TransformationMatrix* trafo)
%code{% THIS->transform(*trafo); %};
Clone<TriangleMesh> get_transformed_mesh(TransformationMatrix* trafo)
%code{% RETVAL=THIS->get_transformed_mesh(*trafo); %};
TriangleMeshPtrs split();
TriangleMeshPtrs cut_by_grid(Pointf* grid)
%code{% RETVAL = THIS->cut_by_grid(*grid); %};