| | Name | Description |
|---|
  | CreateBezierCurveThroughPoints(IListPoint3D, Int32) |
Returns a Point3DCollection that defines the Bezier curve that goes through curvePositions.
The curve positions are created using a fixed number of positions per segment.
This is very fast to computer, but can generate too many points along nearly straight sections and too few where the curve bends sharply.
|
  | CreateBezierCurveThroughPoints(IListPoint3D, Double, Int32) |
Returns a Point3DCollection that defines the Bezier curve that goes through curvePositions.
The curve positions are created using a fixed number of positions per segment.
This is very fast to computer, but can generate too many points along nearly straight sections and too few where the curve bends sharply.
|
  | CreateBezierCurveThroughPoints(IListPoint3D, Double, Double, Int32) |
Returns a Point3DCollection that defines the Bezier curve that goes through curvePositions.
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.
|
  | CreateBezierCurveThroughPoints(IListPoint3D, Double, Double, Double, Int32) |
Returns a Point3DCollection that defines the Bezier curve that goes through curvePositions.
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.
|