Versions Compared

Key

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

...

Iterates over all cameras in the scene.

Methods

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

Anchor
cmaxwellccameraciteratorctorctorcmaxwellccameraciteratorctor
ctor

Citerator

Class constructor

...

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

while not camera.isNull():

  # Do something with the camera.

  camera = it.next();       

...

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

...