mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
LineChart improvement (pressure graph fix)
This commit is contained in:
parent
50c031ba54
commit
1b38a31d26
@ -360,13 +360,13 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
|||||||
//////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////
|
||||||
first=true;
|
first=true;
|
||||||
double start=el.first();
|
double start=el.first();
|
||||||
for (int i=idx;i<siz;i+=sam) {
|
for (int i=0;i<siz;i++) {
|
||||||
|
|
||||||
time=start+tim[i];
|
time=start+tim[i];
|
||||||
if (first) {
|
if (first) {
|
||||||
if (num_points>15 && (time < minx)) continue; // Skip stuff before the start of our data window
|
if (num_points>15 && (time < minx)) continue; // Skip stuff before the start of our data window
|
||||||
first=false;
|
first=false;
|
||||||
if (i>=sam) i-=sam; // Start with the previous sample (which will be in clipping area)
|
if (i>0) i--; // Start with the previous sample (which will be in clipping area)
|
||||||
time=start+tim[i];
|
time=start+tim[i];
|
||||||
}
|
}
|
||||||
data=dat[i]*gain; //
|
data=dat[i]*gain; //
|
||||||
@ -376,6 +376,8 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
|||||||
//py=yst+((data - ymin) * nmult); // Same for Y scale with precomputed gain
|
//py=yst+((data - ymin) * nmult); // Same for Y scale with precomputed gain
|
||||||
py=yst+((data - miny) * ymult); // Same for Y scale with precomputed gain
|
py=yst+((data - miny) * ymult); // Same for Y scale with precomputed gain
|
||||||
|
|
||||||
|
if (px<start_px) px=start_px;
|
||||||
|
if (px>start_px+width) px=start_px+width;
|
||||||
if (firstpx) {
|
if (firstpx) {
|
||||||
firstpx=false;
|
firstpx=false;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user