<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3ACircle</id>
	<title>TI-BASIC:Circle - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3ACircle"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Circle&amp;action=history"/>
	<updated>2026-06-10T07:31:39Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>http://learn.cemetech.net/index.php?title=TI-BASIC:Circle&amp;diff=697&amp;oldid=prev</id>
		<title>Maintenance script: Initial automated import</title>
		<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Circle&amp;diff=697&amp;oldid=prev"/>
		<updated>2016-02-24T18:14:05Z</updated>

		<summary type="html">&lt;p&gt;Initial automated import&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Template:TI-BASIC:Command&lt;br /&gt;
|picture=CIRCLE.GIF&lt;br /&gt;
|summary=Draws a circle.&lt;br /&gt;
|syntax=Circle(&amp;#039;&amp;#039;X&amp;#039;&amp;#039;,&amp;#039;&amp;#039;Y&amp;#039;&amp;#039;,&amp;#039;&amp;#039;r&amp;#039;&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
(83+ and higher only)&lt;br /&gt;
Circle(&amp;#039;&amp;#039;X&amp;#039;&amp;#039;,&amp;#039;&amp;#039;Y&amp;#039;&amp;#039;,&amp;#039;&amp;#039;r&amp;#039;&amp;#039;,{&amp;#039;&amp;#039;i&amp;#039;&amp;#039;})&lt;br /&gt;
|location=Press:&lt;br /&gt;
# Press [2ND] [PRGM] to enter the DRAW menu&lt;br /&gt;
# Press [9] to insert Circle(&lt;br /&gt;
|compatibility=TI-83/84/+/SE&lt;br /&gt;
|size=1 byte&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Circle(&amp;#039;&amp;#039;X&amp;#039;&amp;#039;,&amp;#039;&amp;#039;Y&amp;#039;&amp;#039;,&amp;#039;&amp;#039;r&amp;#039;&amp;#039;) will draw a circle at (&amp;#039;&amp;#039;X&amp;#039;&amp;#039;,&amp;#039;&amp;#039;Y&amp;#039;&amp;#039;) with radius &amp;#039;&amp;#039;r&amp;#039;&amp;#039;. &amp;#039;&amp;#039;X&amp;#039;&amp;#039; and &amp;#039;&amp;#039;Y&amp;#039;&amp;#039; will be affected by the window settings. The radius will also be affected by the window settings.&lt;br /&gt;
&lt;br /&gt;
 :Circle(5,5,5)&lt;br /&gt;
&lt;br /&gt;
= Advanced Uses =&lt;br /&gt;
&lt;br /&gt;
The radius of a circle is affected by the window settings. This means that if the x- and y-increment is two, the radius will be two pixels. However, there is another way to take advantage of this to draw ellipses. If the x- and y-increment are different, then the shape will not be a circle. For instance, with Xmin=0, Xmax=20, Ymin=0, and Ymax=31, Circle(10,10,2) will draw an ellipse, where the width is greater than the height.&lt;br /&gt;
&lt;br /&gt;
= Optimization =&lt;br /&gt;
&lt;br /&gt;
If a complex list such as {&amp;#039;&amp;#039;i&amp;#039;&amp;#039;} is passed to Circle( as the fourth argument, the &amp;quot;fast circle&amp;quot; routine is used instead, which uses the symmetries of the circle to only do 1/8 of the trig calculations. For example:&lt;br /&gt;
&lt;br /&gt;
 :Circle(0,0,5&lt;br /&gt;
 can be&lt;br /&gt;
 :Circle(0,0,5,{i&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any list of complex numbers will work as the fourth argument in the same way, but there&amp;#039;s no benefit to using any other list.&lt;br /&gt;
&lt;br /&gt;
= Command Timings =&lt;br /&gt;
&lt;br /&gt;
The ordinary Circle( is extremely slow. The fast circle trick discussed above cuts the time down to only about 30% of the &amp;quot;slow Circle(&amp;quot; time! While still not instant, this is faster than any replacement routine that can be written in TI-Basic.&lt;br /&gt;
&lt;br /&gt;
For small radii, replace Circle( with Pt-On( instead.&lt;br /&gt;
&lt;br /&gt;
= Related Commands =&lt;br /&gt;
&lt;br /&gt;
* [[TI-BASIC:Line|Line(]]&lt;br /&gt;
* [[TI-BASIC:Pt_On|Pt-On(]][[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>