ComputeNormalizedParameter Method


Computes the normalized curve parameter from the raw parameter.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public double ComputeNormalizedParameter(
	double rawParameter
)
Visual Basic
Public Function ComputeNormalizedParameter ( _
	rawParameter As Double _
) As Double
Visual C++
public:
double ComputeNormalizedParameter(
	double rawParameter
)

Parameters

rawParameter
Type: SystemDouble
The raw parameter.

Return Value

The real number equal to the normalized curve parameter.

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentException Thrown when rawParameter is infinite.
Autodesk.Revit.ExceptionsInvalidOperationException Thrown when the curve is unbound.

See Also