| 48 | } |
| 49 | |
| 50 | void NoteRouter::DrawModule() |
| 51 | { |
| 52 | if (Minimized() || IsVisible() == false) |
| 53 | return; |
| 54 | |
| 55 | mRouteSelector->Draw(); |
| 56 | for (int i = 0; i < (int)mDestinationCables.size(); ++i) |
| 57 | { |
| 58 | ofVec2f pos = mRouteSelector->GetOptionPosition(i) - mRouteSelector->GetPosition(); |
| 59 | mDestinationCables[i]->GetPatchCableSource()->SetManualPosition(pos.x + 10, pos.y + 4); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | void NoteRouter::SetSelectedMask(int mask) |
| 64 | { |
nothing calls this directly
no test coverage detected