Versions Compared

Key

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

...

NameDescription
Citerator (Ccamera)Class constructor.
~CiteratorClass destructor.
Citerator (Ccamera)#firstGets first camera of the scene.
nextCiterator (Ccamera)#nextGets next camera.

Anchor
ctor
ctor

...

Code Block
languagejavascript
titlePython
it = CmaxwellCameraIterator();
camera = it.first( scene );

while not camera.isNull():

  # Do something with the camera.

  camera = it.next();       

...