LETO (Statement)


Assign a value to an orientation vector variable of homogeneous transform type.


LETO <trans variable> = <vector type>


This statement assigns the value of <vector type> on the right-hand side to the orientation vector variable of homogeneous transform type (<trans variable> on the left-hand side).



DEFTRN lt1, lt2, lt3
DEFVEC lv1, lv2
LETO lt1 = OVEC(lt3)
'Assign orientation vector lt3 to orientation vector variable lt1
LETO lt2 = lv1 x lv2
'Assign a value of (lv1 x lv2) to orientation vector variable lt2


Top