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