ClampInPlace (SIVector3)
Description
Clamps this vector components to the range [MinValue, MaxValue].
Scripting Syntax
SIVector3.ClampInPlace( MinValue, MaxValue )
C# Syntax
SIVector3.ClampInPlace( Double in_dMin, Double in_dMax );Parameters
|
Parameter |
Type |
Description |
|
MinValue |
Floating Point value |
Lower bound of the clamping domain |
|
MaxValue |
Floating Point value |
Higher bound of the clamping domain |
Examples
VBScript Example
dim v1 ' Create 3D vectors. set v1 = XSIMath.CreateVector3 v1.Set -1010.0, 1020.0, 1030.0 v1.ClampInPlace -1000.0, 1000.0
See Also
|
|
Autodesk Softimage v7.5