Difference between revisions of "83Plus:Basic:Graphics:Vertical"

From WikiTI
Jump to: navigation, search
m
(Cleaned up formatting to match template)
 
Line 4: Line 4:
 
'''Token size:''' 1 byte
 
'''Token size:''' 1 byte
  
'''Syntax:''' Vertical [x]
+
'''Syntax:''' Vertical ''x''
  
Draws a vertical line across the entire screen at X.
+
Draws a vertical line.
  
 
== Outputs: ==
 
== Outputs: ==
  
Line drawn to the graph screen.
+
A vertical line with an x-coordinate of ''x'' is drawn across the graph screen.
  
 
== Comments ==
 
== Comments ==
Line 24: Line 24:
  
 
== See also: ==
 
== See also: ==
 +
[[83Plus:Basic:Graphics:Line(|Line]]<br />
 +
[[83Plus:Basic:Graphics:Horizontal|Horizontal]]

Latest revision as of 16:25, 16 September 2006


Synopsis

Token size: 1 byte

Syntax: Vertical x

Draws a vertical line.

Outputs:

A vertical line with an x-coordinate of x is drawn across the graph screen.

Comments

  • Coordinate is defined by window settings, not by pixels
  • Will throw no ERR:DOMAINs
  • Functions, plots, and axes are not redrawn.

Examples

Draw a vertical line at ~pi:

:Vertical 3.1415956535897932384626433

See also:

Line
Horizontal