SITransformation.GetScalingValues2
 
 
 

SITransformation.GetScalingValues2

Description

Returns the X, Y and Z scaling values for this transformation in an array. The values in the array are ordered the same as the SITransformation.GetScalingValues 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.

C# Syntax

Object SITransformation.GetScalingValues2();

Scripting Syntax

oArray = SITransformation.GetScalingValues2();

Return Value

Array ordered as X, Y, Z

Examples

JScript Example

var t, array;
t = XSIMath.CreateTransform();
var vbArr = new VBArray( t.GetScalingValues2() ); 
var array = vbArr.toArray();
Application.LogMessage( "Scaling values: " + array[0] +","+ array[1] +","+ array[2] );

See Also

SITransformation.GetScalingValues