Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Iterates over all objects in a scene.

Methods

NameDescription
CiteratorClass constructor.
~CiteratorClass destructor.
Citerator (CmaterialCobject)#firstGets first object of the scene.
Citerator (CmaterialCobject)#nextGets next object.

Anchor
ctor
ctor

...

Code Block
languagejavascript
titlePython
it = CmaxwellCobjectIterator();
object = it.first( scene ); 
 
while not object.isNull():
 
  # Do something with the object
 
  object= it.next();   

...