Added make_sphere, generates a mesh with specified step angle and raidus rho.

This commit is contained in:
Joseph Lenox 2016-12-05 22:43:55 +00:00 committed by bubnikv
parent ceb72da632
commit c575a1f1d6
3 changed files with 89 additions and 0 deletions

View file

@ -240,6 +240,13 @@ cylinder(double r, double h)
OUTPUT:
RETVAL
Clone<TriangleMesh>
sphere(double rho)
CODE:
RETVAL = make_sphere(rho);
OUTPUT:
RETVAL
%}
};