| 101 | } |
| 102 | |
| 103 | void AudioRouter::DrawModule() |
| 104 | { |
| 105 | if (Minimized() || IsVisible() == false) |
| 106 | return; |
| 107 | |
| 108 | mRouteSelector->Draw(); |
| 109 | |
| 110 | for (int i = 0; i < (int)mDestinationCables.size(); ++i) |
| 111 | { |
| 112 | ofVec2f pos = mRouteSelector->GetOptionPosition(i) - mRouteSelector->GetPosition(); |
| 113 | mDestinationCables[i]->SetManualPosition(pos.x + 10, pos.y + 4); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void AudioRouter::PostRepatch(PatchCableSource* cableSource, bool fromUserClick) |
| 118 | { |
nothing calls this directly
no test coverage detected