summaryrefslogtreecommitdiff
path: root/nextus/src
diff options
context:
space:
mode:
Diffstat (limited to 'nextus/src')
-rw-r--r--nextus/src/vectorPlugin.h4
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: