Hey, how can I make a circle using a for loop? That seems the best way I can get a completely filled circle, but I can't quite get the shape. Here is my code:
DEF GCIRCFL CENTX,CENTY,RADI FOR X=CENTX-RADI TO CENTX+RADI FOR Y=CENTY-RADI TO CENTY+RADI GLINE CENTX,CENTY,X,Y NEXT NEXT END GCIRCFL 200,120,20'I want this to make a circleI know this makes a box, and how that works, but no matter how I change it I can't make it a circle. Can anyone help?