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