Get; Set; Control Points / Grips with Python

Thank you still though, Anders. I am thinking that because it’s a MorphControl object, maybe it is an exception. I don’t get access to the standard rs. curve stuff such as the CP / grip style functions for the control morph object.

I think Cage Edit used to work so that you could:

Set a curve as a control
explode it
Manipulate it
Set it as the cage again, and the difference between the explosion would be manipulated

And it would update. But I’m unsure.

 |          Replace(self: ObjectTable, objref: ObjRef, newObject: RhinoObject) -> bool
 |          
 |              Replaces one object with another. Conceptually, this function is the same as 
 |               calling
 |                      Setting new_object attributes = old_object attributes
 |              
 |                       DeleteObject(old_object);
 |                      AddObject(old_object);
 |          
 |          
 |              objref: reference to old object to be replaced. The objref.Object() will be deleted.
 |              newObject: new replacement object - must not be in document.
 |              Returns: true if successful.