v2.0
Increases the subdivision level on the provided objects, by modifying their geometry approximation properties.
IncreaseSubdivision( [InputObjs] ); |
| Parameter | Type | Description |
|---|---|---|
| InputObjs | String | List of geometric
primitives (polygon meshes, curves, NURBS surfaces or hair objects)
to modify.
Default Value: Current selection |
/*
This example creates a NURBS sphere and a polygon mesh cube,
and then increases the subdivision levels on the two objects.
Finally, the subdivision level is decreased for the sphere.
*/
NewScene( null, false );
// Create a NURBS sphere and polygon mesh cube
var oSphere = CreatePrim( "Sphere", "NurbsSurface", "MySphere" );
var oCube = CreatePrim( "Cube", "MeshSurface", "MyCube" );
// Increase the subdivision for both objects
IncreaseSubdivision( oSphere + "," + oCube );
// Decrease the subdivision for the sphere
DecreaseSubdivision( oSphere );
|