Click or drag to resize
DigitalRunePathKey3F Class
Defines a waypoint of a 3-dimensional path (singe-precision).
Inheritance Hierarchy
SystemObject
  DigitalRune.Mathematics.InterpolationCurveKeySingle, Vector3F
    DigitalRune.Mathematics.InterpolationPathKey3F
      DigitalRune.GraphicsTerrainRoadPathKey

Namespace: DigitalRune.Mathematics.Interpolation
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
[SerializableAttribute]
public class PathKey3F : CurveKey<float, Vector3F>

The PathKey3F type exposes the following members.

Constructors
  NameDescription
Public methodPathKey3F
Initializes a new instance of the PathKey3F class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Protected methodGetParameter
Gets the parameter.
(Overrides CurveKeyTParam, TPointGetParameter.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodSetParameter
Sets the parameter.
(Overrides CurveKeyTParam, TPointSetParameter(TParam).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
Remarks

A Path3F is a "piecewise curve". That means, the path is defined by key points (PathKey3F) that are interpolated using spline interpolation. See PiecewiseCurveFTPoint, TCurveKey for more information on piecewise curves.

Path Keys: The path keys (PathKey3F) define the control points of the path. Each path key defines a point on the curve Point. These points are interpolated using spline interpolation. Each path key defines the type of spline interpolation that is used from this path key to the next (see Interpolation). The path keys also contain additional information that might me required for interpolation such as: TangentIn, TangentOut.

See Also