| 264 | } |
| 265 | |
| 266 | void DotSequencer::Resize(float w, float h) |
| 267 | { |
| 268 | mWidth = w; |
| 269 | mHeight = h; |
| 270 | |
| 271 | ofVec2f gridPos = mDotGrid->GetPosition(K(local)); |
| 272 | |
| 273 | mDotGrid->SetDimensions(w - 8 - gridPos.x, h - 5 - gridPos.y); |
| 274 | } |
| 275 | |
| 276 | void DotSequencer::GetModuleDimensions(float& width, float& height) |
| 277 | { |
nothing calls this directly
no test coverage detected