MatrixKeyFrame.InterpolateValue(Matrix, Double) 方法

定义

返回特定关键帧在提供的进度增量处的内插值。

public:
 System::Windows::Media::Matrix InterpolateValue(System::Windows::Media::Matrix baseValue, double keyFrameProgress);
public System.Windows.Media.Matrix InterpolateValue (System.Windows.Media.Matrix baseValue, double keyFrameProgress);
member this.InterpolateValue : System.Windows.Media.Matrix * double -> System.Windows.Media.Matrix
Public Function InterpolateValue (baseValue As Matrix, keyFrameProgress As Double) As Matrix

参数

baseValue
Matrix

动画起始值。

keyFrameProgress
Double

一个介于 0.0 和 1.0 之间的值(包含 0.0 和 1.0),该值指定此关键帧已经过去的时间的百分比。

返回

Matrix

给定了指定基值和进度时此关键帧的输出值。

例外

keyFrameProgress 不在 0.0 和 1.0 之间(包含 0.0 和 1.0)时发生。

注解

基值通常是要进行动画处理的属性的初始值或 Value 上一个关键帧的值。

大多数实现将返回 0.0 的值为 baseValue keyFrameProgress 0.0。

适用于