| 109 | } |
| 110 | |
| 111 | void PulseRouter::GetModuleDimensions(float& width, float& height) |
| 112 | { |
| 113 | float w, h; |
| 114 | mRouteSelector->GetDimensions(w, h); |
| 115 | width = 20 + w; |
| 116 | height = 8 + h; |
| 117 | } |
| 118 | |
| 119 | void PulseRouter::LoadLayout(const ofxJSONElement& moduleInfo) |
| 120 | { |
nothing calls this directly
no test coverage detected