Returns the X, Y and Z values of the vector.
Note: This method uses output
arguments. C# and some scripting languages (such as JScript and
PerlScript) don't support arguments passed by reference. However,
there is a alternate version of this method which is considered
safe to use with C#, JScript and PerlScript: SIVector3.Get2.
SIVector3.Get( X, Y, Z ); |
Parameter | Type | Description |
---|---|---|
X | Floating Point value | X value to get in the vector |
Y | Floating Point value | Y value to get in the vector |
Z | Floating Point value | Z value to get in the vector |
dim v1, x, y, z ' Create 3D vector. set v1 = XSIMath.CreateVector3(2.0, 3.0 , 4.0) v1.get x, y, z |