The classes can also be used to modify the properties of existing NURBS objects in the scene. To gain access to an internal 3ds Max NURBS object you must have the data copied into a NURBSSet. This is done using the node method getNURBSSet() . You can then use the methods of the NURBSSet to access the objects.
For example, the following sample code attempts to grab the first NURBS sub-object from the first node in the current selection set. It then checks if it's a blend surface and if so adjust one of the tension parameters.
The kinds of modification you can perform in this way are limited to changing those parameters and properties that do not alter the structure of the NURBS scene object -- you can modify point and CV positions, CV weights, dependent object parameters such as offsets and extrude amounts, etc. You cannot add or delete objects, change the number of CVs or knots or parent curves, etc. To do this kind of structural modification, use the appendObject() , setObject() , and removeObject() functions defined in NURBSSet : Value and the addNURBSSet() , breakSurface() , and similar functions defined in NURBS Node Properties and Methods.
The stopCreating() method is used to ensure that the specified node is fully created. This method is primarily used to ensure that a NURBS scene objects is fully created, which it will not be until the creation is stopped. The NURBSSet returned for a NURBS scene object will not be complete if the object is still in creation mode. This method will also deactivated any activated object create buttons in the Create panel.
There are other global functions that may be used to modify NURBS scene objects. These functions are documented in NURBS Node Properties and Methods. For instance, developers can use the function breakSurface() to take an existing NURBS surface and break it into two separate surfaces.
You can also use the getNURBSSet() function in a non-relational mode, but not supplying the #relational argument, to retrieve a "flattened" version of the NURBSSet in which all dependent surfaces, such as blends and offsets and lofts are represented as independent curves and surfaces and there is no 'live' connection back to the scene object from which the NURBSSet was derived. You might use this to get a simplified version of the NURBS scene object for an export script, for example if the destination system does not support relational objects. You can also use a non-relational NURBSSet derived in this way as the basis for creating other scene objects, perhaps modifying or adding to the set and then re-instantiating it with the NURBSNode() function.