Table:
Function List
|
|
|
|
|
|
ATAN (Y-axis component, X-axis component)
|
Calculates the arc tangent of Y axis component/X axis component.
The result will be returned in arc within -πtoπ.
When calculating the Angle produced by the horizontal line and the straight line that joins the gravity of zone 0 and zone 1
ATAN (R1.Y-R0.Y, R1.X-R0.X)
When both operands equal 0, the result 0 will be returned. And NG will be displayed.
|
AND (Operand 1, Operand 2)
|
Calculates the logical product.
When one of two operands equals 0, the result 0 will be returned. For the rest part, -1 will be returned.
|
OR (Operand 1, Operand 2)
|
Calculates the logical OR.
When both operands equal 0, the result 0 will be returned. For the rest part, -1 will be returned.
|
|
Calculates the logical NOT.
When the operands equal 0, the result -1 will be returned. For the rest part, 0 will be returned.
|
|
Calculates the absolute value.
|
MAX (Operand 1, Operand 2)
|
The larger of two operands will be returned.
|
MIN (Operand 1, Operand 2)
|
The smaller of two operands will be returned.
|
ATGL (Y-axis component, X-axis component)
|
Calculates the angle made by the straight line that connects two points (center of gravity/center of a model).
Calculates the Angle against the horizontal line. The result will be returned within -180 to 180.
|
|
Calculates the remainder when dividing the dividend with the divisor.
To calculate the remainder, first circle off a decimal, if this is the case, to a whole number then calculate. The result is the integer remainder after division of dividend by an integer divisor.
MOD (13.4) ... ...... Result: 1 (the remainder when dividing 13 by 4)
MOD (25.68,6.99 ) ... Result: 5 (the remainder when dividing 26 by 7)
|
|
Calculates the square root.
When the operand is a minus, the function returns 0. And NG will be displayed.
|
DIST (X-Coordinate of first point, Y-Coordinate of first point, X-Coordinate of second point, Y-Coordinate of second point)
|
Calculates the distance between two points (center of gravity/center of a model).
|