C# Class BEPUphysics.Paths.CardinalSpline3D

Cardinal spline implementation of the 3D hermite curve. Uses a tension parameter to control the tightness of the curve. When tension is zero, a cardinal spline acts like a Catmull-Rom spline.
Inheritance: HermiteCurve3D
Show file Open project: Indiefreaks/igf Class Usage Examples

Public Methods

Method Description
GetCurveIndexBoundsInformation ( int &minIndex, int &maxIndex ) : void

Gets the curve's bounding index information.

Protected Methods

Method Description
ComputeTangents ( ) : void

Method Details

ComputeTangents() protected method

protected ComputeTangents ( ) : void
return void

GetCurveIndexBoundsInformation() public method

Gets the curve's bounding index information.
public GetCurveIndexBoundsInformation ( int &minIndex, int &maxIndex ) : void
minIndex int Index of the minimum control point in the active curve segment.
maxIndex int Index of the maximum control point in the active curve segment.
return void