GetUFromNormalizedU (NurbsCurve) *
Description
Returns the U actual value equivalent to the specified normalized U value.
Scripting Syntax
NurbsCurve.GetUFromNormalizedU( UValueNormalized )
C# Syntax
Double NurbsCurve.GetUFromNormalizedU( Double in_dUValueNormalized );Parameters
|
Parameter |
Type |
Description |
|
UValueNormalized |
The normalized UValue(0.0 to 1.0) from which we want the actual value equivalent. |
Return Value
Examples
VBScript Example
set oRoot = Application.ActiveProject.ActiveScene.Root
set oArc = oRoot.AddGeometry( "Arc", "NurbsCurve" )
UValue = oArc.ActivePrimitive.Geometry.Curves(0).GetUFromNormalizedU( 0.7 )
LogMessage "The equivalent to the normalized U: 0.7 is U :" & UValue Autodesk Softimage v7.5