Difference between revisions of "gc:drawLine"
Jump to navigation
Jump to search
m (Text replace - "<center><center>" to "<center>") |
|
(3 intermediate revisions by the same user not shown) | |
(No difference)
|
Latest revision as of 23:44, 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 |
---|---|---|
number | The x-coordinate of the 1st point. | |
number | The y-coordinate of the 1st point. | |
number | The x-coordinate of the 2nd point. | |
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.