Drawing in LÖVE
Posted: Fri Jun 20, 2014 11:26 am
Hi all,
reading my LÖVE reference ebook, I've found an example to draw a circle:
love.graphics.circle("fill", 200, 300, 50, 50)
"fill" means that the circle is full colored;
200 is the position X
300 is the position Y
50 is the length of the radius
and the 2nd "50" is the length of the segment.
What does it mean? If this is a circle, why there is the length of a segment?
Thank you
reading my LÖVE reference ebook, I've found an example to draw a circle:
love.graphics.circle("fill", 200, 300, 50, 50)
"fill" means that the circle is full colored;
200 is the position X
300 is the position Y
50 is the length of the radius
and the 2nd "50" is the length of the segment.
What does it mean? If this is a circle, why there is the length of a segment?
Thank you