Added new constructor to TriangleMesh that accepts vectors of Points and make_cube function to make a new simple cube mesh.

This commit is contained in:
Joseph Lenox
2017-02-21 16:10:14 +01:00
committed by bubnikv
parent ff33fbbb9a
commit 3bb237deee
3 changed files with 66 additions and 0 deletions
+2
View File
@@ -37,6 +37,8 @@
%code{% RETVAL = THIS->bounding_box().center(); %};
int facets_count();
void reset_repair_stats();
Clone<TriangleMesh> cube(double x, double y, double z)
%code{% RETVAL = make_cube(x, y, z); %};
%{
void