THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 23/01/2006 at 08:08, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 9.52
Platform: Windows ; Mac OSX ;
Language(s) : C++ ;
---------
Maybe I forget anythinks ... but, if:
// Create new obj
BaseObject *op = BaseObject::Alloc(Osphere); //<------- !!
if (!op) return FALSE;
op->GetDataInstance();
op->SetMg(opMatrix);
// hierarchy
doc->AddUndo(UNDO_NEW, op);
doc->InsertObject(op, NULL, NULL, TRUE);
doc->SetActiveObject(op);
DrawViews(DA_ONLY_ACTIVE_VIEW|DA_NO_THREAD|DA_NO_ANIMATION);
make me "happy", because everytime C4D draws a new Sphere by clickin mouse ... in other side if I put
BaseObject *op = BaseObject::Alloc(Ospline); //<------- !!
(...)
ONLY ONE SPline at time, it is possible to Draw ...
Why ?