Struct CubicBezier.SubcurveNode
public struct CubicBezier.SubcurveNode
- Inherited Members
Constructors
SubcurveNode(CubicBezier, ushort)
Initializes a new node representing a quadratic approximation of a cubic Bézier segment in a linked list.
public SubcurveNode(CubicBezier segment, ushort nextIndex = 0)
Parameters
segment
CubicBezierThe original cubic Bézier segment.
nextIndex
ushortIndex of the next node in the chain. Use 0 if this is the last node.
Fields
NextIndex
public ushort NextIndex
Field Value
Precision
public NFloat Precision
Field Value
QuadraticBezierApproximation
public QuadraticBezier QuadraticBezierApproximation
Field Value
Segment
public CubicBezier Segment