ID : 335
Trans
Function
To present Homogeneous Translation Type data.
Description
This is used together with "Dim" in declaration of Homogeneous Translation Type local variables.
Related Terms
Attention
-
Example
'!TITLE "Declaration of Homogenous Translation Type Data"
' Assign a value to declared variable and display it on the message output window
Sub Sample_Trans
' Declare a variable named aaa in homogenous translation type data
Dim aaa As Trans
aaa = T( 100, 200, 300, 1, 0, 0, 0, 1, 0, -1 )
' Display aaa on the message output window
PrintDbg aaa
End Sub
ID : 335