SplineQuaternionKeyFrame Constructors

Definition

Initializes a new instance of the SplineQuaternionKeyFrame class.

Overloads

SplineQuaternionKeyFrame()

Initializes a new instance of the SplineQuaternionKeyFrame class.

SplineQuaternionKeyFrame(Quaternion)

Initializes a new instance of the SplineQuaternionKeyFrame class with the specified ending value.

SplineQuaternionKeyFrame(Quaternion, KeyTime)

Initializes a new instance of the SplineQuaternionKeyFrame class with the specified ending value and key time.

SplineQuaternionKeyFrame(Quaternion, KeyTime, KeySpline)

Initializes a new instance of the SplineQuaternionKeyFrame class with the specified ending value, key time, and KeySpline.

SplineQuaternionKeyFrame()

Initializes a new instance of the SplineQuaternionKeyFrame class.

public:
 SplineQuaternionKeyFrame();
public SplineQuaternionKeyFrame ();
Public Sub New ()

Applies to

SplineQuaternionKeyFrame(Quaternion)

Initializes a new instance of the SplineQuaternionKeyFrame class with the specified ending value.

public:
 SplineQuaternionKeyFrame(System::Windows::Media::Media3D::Quaternion value);
public SplineQuaternionKeyFrame (System.Windows.Media.Media3D.Quaternion value);
new System.Windows.Media.Animation.SplineQuaternionKeyFrame : System.Windows.Media.Media3D.Quaternion -> System.Windows.Media.Animation.SplineQuaternionKeyFrame
Public Sub New (value As Quaternion)

Parameters

value
Quaternion

The ending value (also known as "target value") for the key frame.

Applies to

SplineQuaternionKeyFrame(Quaternion, KeyTime)

Initializes a new instance of the SplineQuaternionKeyFrame class with the specified ending value and key time.

public:
 SplineQuaternionKeyFrame(System::Windows::Media::Media3D::Quaternion value, System::Windows::Media::Animation::KeyTime keyTime);
public SplineQuaternionKeyFrame (System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime);
new System.Windows.Media.Animation.SplineQuaternionKeyFrame : System.Windows.Media.Media3D.Quaternion * System.Windows.Media.Animation.KeyTime -> System.Windows.Media.Animation.SplineQuaternionKeyFrame
Public Sub New (value As Quaternion, keyTime As KeyTime)

Parameters

value
Quaternion

The ending value (also known as "target value") for the key frame.

keyTime
KeyTime

The key time for the key frame. The key time determines when the target value is reached, which is also when the key frame ends.

Applies to

SplineQuaternionKeyFrame(Quaternion, KeyTime, KeySpline)

Initializes a new instance of the SplineQuaternionKeyFrame class with the specified ending value, key time, and KeySpline.

public:
 SplineQuaternionKeyFrame(System::Windows::Media::Media3D::Quaternion value, System::Windows::Media::Animation::KeyTime keyTime, System::Windows::Media::Animation::KeySpline ^ keySpline);
public SplineQuaternionKeyFrame (System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline);
new System.Windows.Media.Animation.SplineQuaternionKeyFrame : System.Windows.Media.Media3D.Quaternion * System.Windows.Media.Animation.KeyTime * System.Windows.Media.Animation.KeySpline -> System.Windows.Media.Animation.SplineQuaternionKeyFrame
Public Sub New (value As Quaternion, keyTime As KeyTime, keySpline As KeySpline)

Parameters

value
Quaternion

The ending value (also known as "target value") for the key frame.

keyTime
KeyTime

The key time for the key frame. The key time determines when the target value is reached, which is also when the key frame ends.

keySpline
KeySpline

A KeySpline for the key frame. The KeySpline represents a Bezier curve that defines animation progress of the key frame.

Applies to