Returns an Iter which iterates the entire Surface.
| 483 | |
| 484 | //! Returns an Iter which iterates the entire Surface. |
| 485 | Iter getIter() { return Iter( *this, this->getBounds() ); } |
| 486 | //! Returns an Iter which iterates the Area \a area. |
| 487 | Iter getIter( const Area &area ) { return Iter( *this, area ); } |
| 488 | //! Returns a ConstIter which iterates the entire Surface. |