...
Name | Description |
---|---|
Citerator (Ccamera) | Class constructor. |
~Citerator | Class destructor. |
Citerator (Ccamera)#first | Gets first camera of the scene. |
nextCiterator (Ccamera)#next | Gets next camera. |
Anchor | ||||
---|---|---|---|---|
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
it = CmaxwellCameraIterator(); camera = it.first( scene ); while not camera.isNull(): # Do something with the camera. camera = it.next(); |
...