RhinoCommon API
CurveNormalizedLengthParameter Method (Double, Double, Interval) |
Input the parameter of the point on the curve that is a prescribed arc length from the start of the curve.
A fractional tolerance of 1e-8 is used in this version of the function.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 5.0

public bool NormalizedLengthParameter( double s, out double t, Interval subdomain )
Public Function NormalizedLengthParameter ( s As Double, <OutAttribute> ByRef t As Double, subdomain As Interval ) As Boolean
Parameters
- s
- Type: SystemDouble
Normalized arc length parameter. E.g., 0 = start of curve, 1/2 = midpoint of curve, 1 = end of curve. - t
- Type: SystemDouble
Parameter such that the length of the curve from its start to t is arc_length. - subdomain
- Type: Rhino.GeometryInterval
The calculation is performed on the specified sub-domain of the curve.
Return Value
Type: Booleantrue on success, false on failure.
