PRINT "Vince's filled circle routine, drawing 10000 circles" vinceCircleFill 320, 240, 199, green~& 'X, Y, radius, color
PRINT "Done! Time elapsed: "; t2
- t1
PRINT "Steve's filled circle routine, drawing 10000 circles" steveCircleFill 320, 240, 199, red~& 'X, Y, radius, color
PRINT "Done! Time elapsed: "; t2
- t1
PRINT "Petr's filled circle routine, drawing 10000 circles" PetrCircle2 320, 240, 199, blue~&, blue~& 'X, Y, radius, color 1, color 2
PRINT "Done! Time elapsed: "; t2
- t1
FOR y&
= CY&
- R&
TO CY&
+ R&
FOR x&
= CX&
- R&
TO CX&
+ R&
xy& = ((x& - CX&) ^ 2) + ((y& - CY&) ^ 2)
x0 = R
y0 = 0
e = 0
y0 = y0 + 1
LINE (x
- x0
, y
+ y0
)-(x
+ x0
, y
+ y0
), C
, BF
LINE (x
- x0
, y
- y0
)-(x
+ x0
, y
- y0
), C
, BF
e = e + 2 * y0
LINE (x
- y0
, y
- x0
)-(x
+ y0
, y
- x0
), C
, BF
LINE (x
- y0
, y
+ x0
)-(x
+ y0
, y
+ x0
), C
, BF
x0 = x0 - 1
e = e - 2 * x0
LINE (x
- R
, y
)-(x
+ R
, y
), C
, BF
'This sub from here: http://www.[abandoned, outdated and now likely malicious qb64 dot net website - don’t go there]/forum/index.php?topic=1848.msg17254#msg17254
RadiusError = -Radius
X = Radius
Y = 0
' Draw the middle span here so we don't draw it twice in the main loop,
' which would be a problem with blending turned on.
LINE (CX
- X
, CY
)-(CX
+ X
, CY
), C
, BF
RadiusError = RadiusError + Y * 2 + 1
LINE (CX
- Y
, CY
- X
)-(CX
+ Y
, CY
- X
), C
, BF
LINE (CX
- Y
, CY
+ X
)-(CX
+ Y
, CY
+ X
), C
, BF
X = X - 1
RadiusError = RadiusError - X * 2
Y = Y + 1
LINE (CX
- X
, CY
- Y
)-(CX
+ X
, CY
- Y
), C
, BF
LINE (CX
- X
, CY
+ Y
)-(CX
+ X
, CY
+ Y
), C
, BF