The other way to fill a circle is to use a loop like so:
code: |
For x = 1 to 10 step 0.1
form1.circle (10, 10), x, RGB(0, 0, 0)
next x |
As you can see this will draw a hollow circle with the centre at point 10, 10. As the loop goes through the circle will get bigger and bigger and eventually draw a filled in circle. Also I'm sure there is a way to fill in a four sided shape either by changing the draw width of a line to make it fill in the shape you want or by drawing many lines and using mathematics to fill it in.