LETRY (Statement)


Assign a value to the Y-axis rotation component of the position variable.


LETRY <position variable> = <Y-axis rotation angle>


This statement assigns the value of <Y-axis rotation angle> on the right-hand side to the Y-axis rotation component of <position variable> on the left-hand side.



DEFPOS lp1, lp2, lp3
DEFSNG lf1, lf2
LETRY lp1 = POSRY(lp3)
'Assign the Y-axis rotation component of lp3 to that of lp1
LETRY lp2 = lf1 - lf2
'Assign the value of (lf1 - lf2) to the Y-axis rotation
'component of lp2


Top