| 152 | } |
| 153 | |
| 154 | void IDrawableModule::BasePoll() |
| 155 | { |
| 156 | Poll(); |
| 157 | for (int i = 0; i < mUIControls.size(); ++i) |
| 158 | mUIControls[i]->Poll(); |
| 159 | for (int i = 0; i < mChildren.size(); ++i) |
| 160 | mChildren[i]->BasePoll(); |
| 161 | } |
| 162 | |
| 163 | bool IDrawableModule::IsWithinRect(const ofRectangle& rect) |
| 164 | { |