Returns the X, Y and Z translation values for this transfomation in an
array. The values in the array are ordered the same as the
SITransformation.GetTranslationValues output parameters.
Note: This method must be used with scripting languages that don't
support arguments passed by reference such as JScript. For more information
on getting output arguments, see About Output Argument Arrays.
Object SITransformation.GetTranslationValues2(); |
oArray = SITransformation.GetTranslationValues2(); |
Array ordered as X, Y, Z
var t, array; t = XSIMath.CreateTransform(); var vbArr = new VBArray( t.GetTranslationValues2() ); var array = vbArr.toArray(); Application.LogMessage( "Translation values: " + array[0] +","+ array[1] +","+ array[2] ); |