Circle(
From TI-BASIC Wiki - The free TI-BASIC encyclopedia
(84) :Circle(X,Y,R) (89) :Circle X,Y,R
When used this way, it will draw a circle with a center at the indicated X and Y coordinates, with the indicated radius (R)
(89) :Circle X,Y,R,0
This will draw a circle with the indicated center and radius in white.
[edit] Location
- 2nd + PRGM (DRAW)
- DRAW
- 9:Circle(
[edit] Example
:ClrDraw :0→Xmin :94→Xmax :0→Ymax :-62→Ymin :Circle(47,-31,20)
This program will draw a fairly large circle in the center of the graph screen.
