Returns the normalized equivalent of U value.
oDouble = NurbsCurve.GetNormalizedUFromU( UValue ); |
Parameter | Type | Description |
---|---|---|
UValue | Double | The UValue from which we want the Normalized equivalent. |
set oRoot = Application.ActiveProject.ActiveScene.Root set oArc = oRoot.AddGeometry( "Arc", "NurbsCurve" ) UNormalized = oArc.ActivePrimitive.Geometry.Curves(0).GetNormalizedUFromU( 3.0 ) LogMessage "The normalized equivalent of 3.0 is U :" & UNormalized |