Vector4.Lerp 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Lerp(Vector4, Vector4, Single) |
根據給定的加權執行兩個向量之間的線性插補。 |
Lerp(Vector4, Vector4, Vector4) |
Lerp(Vector4, Vector4, Single)
- 來源:
- Vector4.cs
- 來源:
- Vector4.cs
- 來源:
- Vector4.cs
根據給定的加權執行兩個向量之間的線性插補。
public:
static System::Numerics::Vector4 Lerp(System::Numerics::Vector4 value1, System::Numerics::Vector4 value2, float amount);
public static System.Numerics.Vector4 Lerp (System.Numerics.Vector4 value1, System.Numerics.Vector4 value2, float amount);
static member Lerp : System.Numerics.Vector4 * System.Numerics.Vector4 * single -> System.Numerics.Vector4
Public Shared Function Lerp (value1 As Vector4, value2 As Vector4, amount As Single) As Vector4
參數
- value1
- Vector4
第一個向量。
- value2
- Vector4
第二個向量。
- amount
- Single
介於 0 和 1 的值,表示 value2
的加權。
傳回
插補的向量。
備註
此方法的行為在 .NET 5 中已變更。 如需詳細資訊,請參閱 Vector2.Lerp 和 Vector4.Lerp 的行為變更。
適用於
Lerp(Vector4, Vector4, Vector4)
public:
static System::Numerics::Vector4 Lerp(System::Numerics::Vector4 value1, System::Numerics::Vector4 value2, System::Numerics::Vector4 amount);
public static System.Numerics.Vector4 Lerp (System.Numerics.Vector4 value1, System.Numerics.Vector4 value2, System.Numerics.Vector4 amount);
static member Lerp : System.Numerics.Vector4 * System.Numerics.Vector4 * System.Numerics.Vector4 -> System.Numerics.Vector4
Public Shared Function Lerp (value1 As Vector4, value2 As Vector4, amount As Vector4) As Vector4
參數
- value1
- Vector4
- value2
- Vector4
- amount
- Vector4