LETR (Statement)


Assign a value to the posture (three rotation components) of the position variable.


LETR <position variable> = <vector type>


This statement assigns the value of <vector type> on the right-hand side to the posture--three rotation components of <position variable> on the left-hand side.



DEFPOS lp1, lp2
LETR lp1 = RVEC(lp2)
'Assign the posture of lp2 to lp1


Top