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