| 86 | } |
| 87 | |
| 88 | void CircleSequencer::DrawModule() |
| 89 | { |
| 90 | if (Minimized() || IsVisible() == false) |
| 91 | return; |
| 92 | |
| 93 | for (int i = 0; i < mCircleSequencerRings.size(); ++i) |
| 94 | mCircleSequencerRings[i]->Draw(); |
| 95 | |
| 96 | ofPushStyle(); |
| 97 | ofSetColor(ofColor::lime); |
| 98 | float pos = TheTransport->GetMeasurePos(gTime); |
| 99 | ofVec2f end = PolToCar(pos, 100); |
| 100 | ofLine(100, 100, 100 + end.x, 100 + end.y); |
| 101 | ofPopStyle(); |
| 102 | } |
| 103 | |
| 104 | void CircleSequencer::OnClicked(float x, float y, bool right) |
| 105 | { |
nothing calls this directly
no test coverage detected