Skip to content

Commit

Permalink
expose mesh transform cloning to perl
Browse files Browse the repository at this point in the history
  • Loading branch information
Oekn5w authored and lordofhyphens committed Dec 2, 2019
1 parent a9a1422 commit 89ed376
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xs/xsp/TriangleMesh.xsp
Original file line number Diff line number Diff line change
Expand Up @@ -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); %};
Expand Down

0 comments on commit 89ed376

Please sign in to comment.