Table of Contents

Struct CubicBezier.SubcurveNode

Namespace
Xui.Core.Curves2D
Assembly
Core.dll
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 CubicBezier

The original cubic Bézier segment.

nextIndex ushort

Index of the next node in the chain. Use 0 if this is the last node.

Fields

NextIndex

public ushort NextIndex

Field Value

ushort

Precision

public NFloat Precision

Field Value

NFloat

QuadraticBezierApproximation

public QuadraticBezier QuadraticBezierApproximation

Field Value

QuadraticBezier

Segment

public CubicBezier Segment

Field Value

CubicBezier