mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
used wrong ABS function
This commit is contained in:
parent
c7924fcebe
commit
b5b85e5b5b
@ -84,7 +84,7 @@ void gFooBar::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
double py=((1/rmx)*(w.max_x-w.rmin_x))*width;
|
double py=((1/rmx)*(w.max_x-w.rmin_x))*width;
|
||||||
|
|
||||||
int extra=0;
|
int extra=0;
|
||||||
if (abs(px-py)<2) extra=2;
|
if (fabs(px-py)<2) extra=2;
|
||||||
|
|
||||||
int hh=25;
|
int hh=25;
|
||||||
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
Loading…
Reference in New Issue
Block a user