| | Name | Description |
|---|
  | CreateBezierCurvePositionsThroughPoints(Vector3, Int32, Single) |
Returns an array of 3D points that define the Bezier curve that passes through the specified positions.
The curve positions are created using a fixed number of positions per segment.
This is very fast to compute, but can generate too many points along nearly straight sections and too few where the curve bends sharply.
|
  | CreateBezierCurvePositionsThroughPoints(Vector3, Single, Single, Int32) |
Returns an array of 3D points that define the Bezier curve that passes through the specified positions.
The curve positions are created using an adaptive algorithm that adds more points where the curvature is higher.
This takes longer to compute than when using fixed positionsPerSegment, but generates smoother curves with less positions.
|
  | CreateBezierCurvePositionsThroughPoints(Vector3, Single, Single, Single, Int32) |
Returns an array of 3D points that define the Bezier curve that passes through the specified positions.
The curve positions are created using an adaptive algorithm that adds more points where the curvature is higher.
This takes longer to compute than when using fixed positionsPerSegment, but generates smoother curves with less positions.
|