| 263 | } |
| 264 | |
| 265 | float ModuleContainer::GetDrawScale() const |
| 266 | { |
| 267 | if (mOwner != nullptr && mOwner->GetOwningContainer() != nullptr) |
| 268 | return mDrawScale * mOwner->GetOwningContainer()->GetDrawScale(); |
| 269 | return mDrawScale; |
| 270 | } |
| 271 | |
| 272 | void ModuleContainer::GetModulesWithinRect(ofRectangle rect, std::vector<IDrawableModule*>& output, bool ignorePinned /* = false */) |
| 273 | { |
no test coverage detected