Difference between revisions of "gc:drawLine"

From Inspired-Lua Wiki
Jump to navigation Jump to search
(Created page with "gc:'''drawLine''' is a function that is part of gc (Graphics Context). It basically draws a line between the two points defined by their coordinates. {{Since|...")
 
Line 13: Line 13:
 
! Parameter !! Type !! Description
 
! Parameter !! Type !! Description
 
|-
 
|-
| <u>x1</u> || number || The x-coordinate of the 1st point.
+
| <u><center>x1</center></u> || number || The x-coordinate of the 1st point.
 
|-
 
|-
| <u>y1</u> || number || The y-coordinate of the 1st point.
+
| <u><center>y1</center></u> || number || The y-coordinate of the 1st point.
 
|-
 
|-
| <u>x2</u> || number || The x-coordinate of the 2nd point.
+
| <u><center>x2</center></u> || number || The x-coordinate of the 2nd point.
 
|-
 
|-
| <u>y2</u> || number || The y-coordinate of the 2nd point.
+
| <u><center>y2</center></u> || number || The y-coordinate of the 2nd point.
 
|}
 
|}
  

Revision as of 23:37, 30 May 2011

gc:drawLine is a function that is part of gc (Graphics Context).

It basically draws a line between the two points defined by their coordinates.


This has been introduced in TI-Nspire OS 3.0 (Changes).


Syntax

functionName(x1, y1, x2 , y2)

Parameter Type Description
x1
number The x-coordinate of the 1st point.
y1
number The y-coordinate of the 1st point.
x2
number The x-coordinate of the 2nd point.
y2
number The y-coordinate of the 2nd point.

Example

gc:drawLine(0, 0, 100, 50)


Good to know

This function is the one you can use in order to draw a simple point. You can do as follow :

gc:drawLine(20, 20, 20, 20)

This trick also works with gc:fillRect etc.