RhinoCommon API
CurveGetPerpendicularFrames Method |
Gets a collection of perpendicular frames along the curve. Perpendicular frames
are also known as 'Zero-twisting frames' and they minimize rotation from one frame to the next.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 5.0

public Plane[] GetPerpendicularFrames( IEnumerable<double> parameters )
Public Function GetPerpendicularFrames ( parameters As IEnumerable(Of Double) ) As Plane()
Parameters
- parameters
- Type: System.Collections.GenericIEnumerableDouble
A collection of strictly increasing curve parameters to place perpendicular frames on.
Return Value
Type: PlaneAn array of perpendicular frames on success or null on failure.

Exception | Condition |
---|---|
InvalidOperationException | Thrown when the curve parameters are not increasing. |
