Home
last modified time | relevance | path

Searched refs:yCoord2 (Results 1 – 1 of 1) sorted by relevance

/haiku/src/tests/kits/game/ParticlesII/
H A DparticlesII.cpp647 int xCoord2, yCoord2; in ellipse_fill_points() local
652 yCoord2 = y_offset + y; in ellipse_fill_points()
654 if((xCoord2 > 0) && (yCoord2 > 0) && (xCoord2 < width) && (yCoord2 < height)) in ellipse_fill_points()
655 draw_line(xCoord1,yCoord1,xCoord2,yCoord2,color); in ellipse_fill_points()
660 yCoord2 = y_offset - y; in ellipse_fill_points()
662 if((xCoord2 > 0) && (yCoord2 > 0) && (xCoord2 < width) && (yCoord2 < height)) in ellipse_fill_points()
663 draw_line(xCoord1,yCoord1,xCoord2,yCoord2,color); in ellipse_fill_points()