diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-05 14:10:55 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-05 14:10:55 +0000 |
| commit | 7ed9d7c6bdf4cce9c4dcd300a5f212f08c3661df (patch) | |
| tree | ba083c4c600784822459b4c8f654a6cc8e11bd2a /rotord/src/graph.cpp | |
| parent | 5d8802e44adf01a1d8dd70dcbd5357d8641f37f9 (diff) | |
making plotting system
Diffstat (limited to 'rotord/src/graph.cpp')
| -rw-r--r-- | rotord/src/graph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rotord/src/graph.cpp b/rotord/src/graph.cpp index a746e6b..fdbd4c8 100644 --- a/rotord/src/graph.cpp +++ b/rotord/src/graph.cpp @@ -36,7 +36,7 @@ bool Graph::signal_render(xmlIO &XML,const string &node,const float framerate) { for (float i=0;i<duration;i+=1.0f/framerate){ float s=(signal_output->get_output(Time_spec(i,framerate,duration))+1.0f)/10.0f; if (!fequal(sig,s)){ - val+=toString(i)+","+toString(s)+" "; + val+=toString(i)+" "+toString(s)+","; sig=s; } } |
