Versions Compared

Key

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

...

Code Block
languagecpp
titleC++
Cmaxwell::Cobject::Citerator it;
Cmaxwell::Cobject object = it.first( scene );
 
while( !object.isNull() )
{
 
  // Do something with the object
  
  object = it.next();
}     
Code Block
languagejavascript
titlePython
it = CmaxwellCobjectIterator();
object = it.first( scene ); 
 
while not object.isNull():
 
  # Do something with the object
 
  object= it.next();   

...