diff options
Diffstat (limited to 'nextus/src/vectorPlugin.h')
| -rw-r--r-- | nextus/src/vectorPlugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nextus/src/vectorPlugin.h b/nextus/src/vectorPlugin.h index 94ea947..d71b8fa 100644 --- a/nextus/src/vectorPlugin.h +++ b/nextus/src/vectorPlugin.h @@ -91,7 +91,9 @@ class svgPanel: public vectorPanel{ timedelta=ofGetElapsedTimef()-last_frame_time; last_frame_time=ofGetElapsedTimef(); phase=fmod(phase+(timedelta*segmenter_speed),1); - //while(phase<1) phase+=1.0f; + while(phase<0) phase+=1.0f; + //what's the issue with segmenter in reverse + ofLog()<<"phase: "<<phase; } private: |
