From 45c3c5d55d4dfa75c586deb8926455aa691fc21d Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 30 Jul 2011 15:32:56 +1000 Subject: [PATCH] LineChart weirdness attempt 1 --- Graphs/gLineChart.cpp | 43 ++++++++++--------------------------------- SleepLib/event.cpp | 3 ++- 2 files changed, 12 insertions(+), 34 deletions(-) diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 41bdd08c..6cd532b9 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -85,9 +85,9 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) float lastpx,lastpy; float px,py; - int idx,idxend,np; + int idx; bool done,first; - double x0,x1,xL; + qint64 x0,xL; double sr; int sam; int minz,maxz; @@ -169,7 +169,7 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) } } if (accel) { - x1=el.time(1); + //x1=el.time(1); sr=el.rate(); // Time distance between samples if (sr<=0) { qWarning() << "qLineChart::Plot() assert(sr>0)"; @@ -216,46 +216,22 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) // The Z? values are much more accurate idx=0; - idxend=0; - np=0; - if (el.type()==EVL_Waveform) { // We can skip data previous to minx if this is a waveform - if (minx>x1) { + if (minx>x0) { double j=minx-x0; // == starting min of first sample in this segment - idx=floor(j/sr); + idx=(j/sr); // Loose the precision - idx-=idx % sam; + //idx-=idx % sam; } // else just start from the beginning - - idxend=floor(xx/sr); - idxend/=sam; // devide by number of samples skips - - np=(idxend-idx)+sam; - np /= sam; - } else { - - np=siz; } - //bool watch_verts_carefully=false; - // better to do it here than in the main loop. - np <<= 2; - - if (square_plot) - np <<= 1; // double it again - - if (np>=maxverts) { - // watch_verts_carefully=true; - //assert(npsam) idx-=sam; time=el.time(idx); - qint64 rate=sr*sam; + double rate=double(sr)*double(sam); if (accel) { ////////////////////////////////////////////////////////////////// @@ -319,7 +295,8 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) ////////////////////////////////////////////////////////////////// // Normal Waveform Plot ////////////////////////////////////////////////////////////////// - for (int i=idx;i