...
Iterates over all objects in a scene.
Methods
Name | Description |
---|---|
Citerator | Class constructor. |
~Citerator | Class destructor. |
Citerator (CmaterialCobject)#first | Gets first object of the scene. |
Citerator (CmaterialCobject)#next | Gets next object. |
Anchor | ||||
---|---|---|---|---|
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
it = CmaxwellCobjectIterator(); object = it.first( scene ); while not object.isNull(): # Do something with the object object= it.next(); |
...