<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wikiti.brandonw.net/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wikiti.brandonw.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=148.78.247.10</id>
		<title>WikiTI - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wikiti.brandonw.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=148.78.247.10"/>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=Special:Contributions/148.78.247.10"/>
		<updated>2026-04-05T20:12:16Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.5</generator>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Vertical</id>
		<title>83Plus:Basic:Graphics:Vertical</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Vertical"/>
				<updated>2005-07-22T19:58:22Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|Vertical]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' Vertical X&lt;br /&gt;
Draws a vertical line across the entire screen at X.&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
Line drawn to the graph screen.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
*Coordinate is defined by window settings, not by pixels&lt;br /&gt;
*Will throw no ERR:DOMAINs&lt;br /&gt;
*Functions, plots, and axes are not redrawn.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
Draw a vertical line at ~pi:&lt;br /&gt;
&lt;br /&gt;
 :Vertical 3.1415956535897932384626433&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Horizontal</id>
		<title>83Plus:Basic:Graphics:Horizontal</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Horizontal"/>
				<updated>2005-07-22T19:56:23Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|Horizontal]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' Horizontal Y&lt;br /&gt;
Draws a horizontal line across the entire screen at Y.&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
Line drawn to the graph screen.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
*Coordinate is defined by window settings, not by pixels&lt;br /&gt;
*Will throw no ERR:DOMAINs&lt;br /&gt;
*Functions, plots, and axes are not redrawn.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
Draw a horizontal line at ~pi:&lt;br /&gt;
&lt;br /&gt;
 :Horizontal 3.1415956535897932384626433&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Line(</id>
		<title>83Plus:Basic:Graphics:Line(</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Line("/>
				<updated>2005-07-22T19:51:12Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|Line(]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' Line(X1,Y1,X2,Y2,[1 or 0])&lt;br /&gt;
&lt;br /&gt;
Draws or erases a line from (X1, Y1) to (X2, Y2).&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
Line drawn to or erased from the graph screen.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
*Endpoint coordinates are those defined by window settings, not by pixels&lt;br /&gt;
*The last argument is assumed ot be 1 if omitted.  A value of 1 draws a line, a value of 0 erases one.&lt;br /&gt;
*Will throw no ERR:DOMAINs&lt;br /&gt;
*Functions, plots, and axes are not redrawn.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
To draw a line from the top left corner of the screen to the bottom right corner, wait, then erase it:&lt;br /&gt;
&lt;br /&gt;
 :Line(Xmin,Ymax,Xmax,Ymin)&lt;br /&gt;
 :Pause&lt;br /&gt;
 :Line(Xmin,Ymax,Xmax,Ymin,0)&lt;br /&gt;
&lt;br /&gt;
Draw a &amp;quot;unit square&amp;quot; centered at the origin:&lt;br /&gt;
&lt;br /&gt;
 :Line(1,1,-1,1)&lt;br /&gt;
 :Line(-1,1,-1,-1)&lt;br /&gt;
 :Line(-1,-1,1,-1)&lt;br /&gt;
 :line(1,-1,1,1)&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:ClrDraw</id>
		<title>83Plus:Basic:Graphics:ClrDraw</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:ClrDraw"/>
				<updated>2005-07-22T19:23:49Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|ClrDraw]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' ClrDraw&lt;br /&gt;
&lt;br /&gt;
Clears all text from the graph screen&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
Clears graph screen and graph buffer.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
If any functions, plots, or axes are on, they will be redrawn.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
 :ClrDraw&lt;br /&gt;
 :[[83Plus:Basic:Graphics:Text(|Text(]]0,0,&amp;quot;Hello World!!!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:ClrDraw</id>
		<title>83Plus:Basic:Graphics:ClrDraw</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:ClrDraw"/>
				<updated>2005-07-22T19:19:58Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|ClrHome]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' ClrDraw&lt;br /&gt;
&lt;br /&gt;
Clears all text from the graph screen&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
Clears graph screen and graph buffer.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
If any functions, plots, or axes are on, they will be redrawn.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
 :ClrDraw&lt;br /&gt;
 :[[83Plus:Basic:Graphics:Text(|Text(]]0,0,&amp;quot;Hello World!!!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Output(</id>
		<title>83Plus:Basic:Graphics:Output(</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:Output("/>
				<updated>2005-07-22T19:13:13Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|Output]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' Output(X,Y,value&lt;br /&gt;
&lt;br /&gt;
Displays a value or text on the homescreen, at position (X,Y).&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
''Value'' will be displayed at X,Y, where X is an integer value from 1-8, and Y is an integer value from 1-16. &lt;br /&gt;
&lt;br /&gt;
Value can be a string, a list, a variable and a matrix. If the content of value doesn't fit on the current line, it will start at the beginning of the next line, unless it already is at the bottom of the screen.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
*STO (-&amp;gt;) cannot be displayed in a string with Output.&lt;br /&gt;
*The double quote (&amp;quot;) cannot be displayed with Output, as it always is treated as a string deliminer.&lt;br /&gt;
*The ending parenthesis ) isn't needed, and can be left out to save a byte.&lt;br /&gt;
*As always when working with a string, the ending quote &amp;quot; isn't needed if nothing else is to follow before a newline, and can be left out to save a byte.&lt;br /&gt;
*Does not affect where the next [[83Plus:Basic:Graphics:Disp|Disp]] command puts text&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
 :Output(1,1,&amp;quot;wikiTI rocks&lt;br /&gt;
 :Output(2,1,A&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	<entry>
		<id>https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:ClrHome</id>
		<title>83Plus:Basic:Graphics:ClrHome</title>
		<link rel="alternate" type="text/html" href="https://wikiti.brandonw.net/index.php?title=83Plus:Basic:Graphics:ClrHome"/>
				<updated>2005-07-22T19:09:40Z</updated>
		
		<summary type="html">&lt;p&gt;148.78.247.10: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:83Plus:Basic:Graphics|ClrHome]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
'''Token size:''' 1 byte&lt;br /&gt;
&lt;br /&gt;
'''Syntax:''' ClrHome&lt;br /&gt;
&lt;br /&gt;
Clears all text from the homescreen.&lt;br /&gt;
&lt;br /&gt;
== Outputs: ==&lt;br /&gt;
&lt;br /&gt;
Clears homescreen and text shadow.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
&lt;br /&gt;
Resets cursor position to top left corner.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
 :ClrHome&lt;br /&gt;
 :Disp &amp;quot;Hello World!!!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== See also: ==&lt;/div&gt;</summary>
		<author><name>148.78.247.10</name></author>	</entry>

	</feed>