Unfilled ovals?

BlitzMax Forums/BlitzMax Beginners Area/Unfilled ovals?

Who was John Galt?(Posted 2004) [#1]
How to? Some bright spark recently posted a method on these boards, now I can't find it for the life of me.


TeaVirus(Posted 2004) [#2]
http://www.blitzbasic.com/Community/posts.php?topic=41793


fredborg(Posted 2004) [#3]



Who was John Galt?(Posted 2004) [#4]
Ta very much guys!


EOF(Posted 2004) [#5]
Another way:
Graphics 400,300,0

' outlined
glPolygonMode(GL_FRONT, GL_LINE)
SetColor 200,0,0
DrawOval 80,60,70,80

' filled
glPolygonMode(GL_FRONT, GL_FILL)
SetColor 0,200,0
DrawOval 230,90,70,80

' dotted
glPolygonMode(GL_FRONT, GL_POINT)
SetColor 0,0,200
DrawOval 160,180,70,80

Flip
WaitKey
End 
It would be nice if max had a SetDrawMode in a similar way to how SetBlend works.


Who was John Galt?(Posted 2004) [#6]
Ah like that method Jim.


LeisureSuitLurie(Posted 2004) [#7]
Now if you can come up with one for Arcs...