' TDB 27 12 2019 (it)/ 2019 12 27 (international) dd-mm-yyyy/yyyy-mm-dd
'Hi here I play with code translating it into a more modular shape
'like SUBs FUNCTIONs and loops
'I made this program for programmers that don't know too much math and need the coordinates of a circle.
'Of course you can always use the CIRCLE command but this could be needed to find partcular points.
'The more coordinates you make of the circle, the lesser gaps between pixels..
'Programmers can use the CircleCoordinates.txt to either copy/paste it into code or use it as a data file to read with their program.
'Made on Dec. 27, 2019 by Ken G.
'Freeware
AnyMaxX = 800
AnyMaxY = 600
Again = -1
HelpScreen
PRINT "Center Point Horizon X (between 0 and ";
STR$(AnyMaxX
) + "): ":
INPUT xx
PRINT "Center Point Vertical Y (between 0 and " + STR$(AnyMaxY
) + "): ":
INPUT yy
INPUT "Center To Middle (radius larger than zero): ", r
PRINT "Choose how many coordinates you want here."
seconds = seconds + cco
s = (60 - seconds) * 6 + 180
x
= INT(SIN(s
/ 180 * 3.141592) * r
) + xx
y
= INT(COS(s
/ 180 * 3.141592) * r
) + yy
seconds = 0
PRINT "CircleCoordinates.txt has been created."
PRINT " Circle Coordinate Maker by Ken G." PRINT "This program will create the file CircleCoordinates.txt" PRINT "which will have x and then y coordinates of a circle." PRINT "If this file already exists in this directory," PRINT "it will be deleted to make a new one." PRINT "This screen is x=800 by y=600 coordinates big."