6.0

Table Of Contents
67
Example 2
show(floattostr(add(4.7,2.1))) %Displays 6.8
And (Boolean operator function)
Returns true if both specified expressions are true, otherwise it is false.
Syntax
and( expression1, expression2 ) Boolean value
expression1 and expression2 Boolean value
Arguments
expression1, expression 2 — Boolean values.
Code Sample Examples
These examples illustrate the possible values for AND.
Example 1
and(true, false) %Returns false
Example 2
and(false, true) %Returns false
Example 3
and(false, false) %Returns false
Example 4
and(true, true) %Returns true
Arc (procedure)
Draws an arc in a counter-clockwise direction. If there is a current point set, the command draws a straight
line from the current point to the start point of the arc. Whether or not a current point is set when the
command executes, after execution the current point is the end point of the arc.
You define the arc you want to draw by specifying the x and y coordinates of the center of the circle, the
radius of the circle, and the start and end points for the arc. You specify each of the start and end points of
the arc as an angle; the command uses the angle to position the point. For example, to position the start