diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-06 12:39:56 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-06 12:39:56 +0000 |
| commit | 4b313553d04d014291a7503c965624bf3e5279c4 (patch) | |
| tree | b43fd604c4a215695f3c099af2b7c1e4bd0fed4b /rotord/src | |
| parent | 7ed9d7c6bdf4cce9c4dcd300a5f212f08c3661df (diff) | |
signal graphing
Diffstat (limited to 'rotord/src')
| -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 fdbd4c8..737aeab 100644 --- a/rotord/src/graph.cpp +++ b/rotord/src/graph.cpp @@ -34,7 +34,7 @@ bool Graph::signal_render(xmlIO &XML,const string &node,const float framerate) { float sig=0.0f; string val=""; 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; + float s=(signal_output->get_output(Time_spec(i,framerate,duration))); if (!fequal(sig,s)){ val+=toString(i)+" "+toString(s)+","; sig=s; |
