7.5

Table Of Contents
Arguments
x, y
Measure values representing the horizontal/vertical position, in inches, of the ending point of the line. When using rlineto,
these values are relative to the current point of origin. When using lineto, they are absolute values.
Code Sample Example
This example draws an empty triangle with a blue outline.
Example
setstrokecolor([100,100,0,0]) %Set pen colour to blue
moveto(1,1) %Set starting point
lineto(1.5,2) %Draw first line
lineto(0.5,2) %Draw second line
closepath() %Close shape
stroke() %Draw shape
LowerCase (function)
Convert a string to all lower case characters.
Syntax
lowercase( string ) string
Argument
string
String value you want to convert to lower case. The string may be a mix of upper and lower case characters.
Code Sample Example
&partname := lowercase( @(30,16,39) )
LT (function)
Compares two expressions of any type and returns true if the first is less than the second, false otherwise. This is the func-
tional equivalent to the < operator.
Syntax
lt( expression1, expression2 ) Boolean value
©2010 Objectif Lune Inc - 300 -