11-27-2022, 01:46 AM
And, if all you need is something faster than PAINT, keep in mind this simple little circlefill:
SUB CircleFill (x, y, size)
FOR i = 1 to size
CIRCLE (x, y), size
NEXT
END SUB
It doesn't get any simpler than that, and it's still quite a bit faster than PAINT!
SUB CircleFill (x, y, size)
FOR i = 1 to size
CIRCLE (x, y), size
NEXT
END SUB
It doesn't get any simpler than that, and it's still quite a bit faster than PAINT!