Vector3.Lerp 方法
本文內容
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
Lerp(Vector3, Vector3, Single) |
根據給定的加權執行兩個向量之間的線性插補。 |
Lerp(Vector3, Vector3, Vector3) |
- 來源:
- Vector3.cs
- 來源:
- Vector3.cs
- 來源:
- Vector3.cs
根據給定的加權執行兩個向量之間的線性插補。
public:
static System::Numerics::Vector3 Lerp(System::Numerics::Vector3 value1, System::Numerics::Vector3 value2, float amount);
C#
public static System.Numerics.Vector3 Lerp (System.Numerics.Vector3 value1, System.Numerics.Vector3 value2, float amount);
static member Lerp : System.Numerics.Vector3 * System.Numerics.Vector3 * single -> System.Numerics.Vector3
Public Shared Function Lerp (value1 As Vector3, value2 As Vector3, amount As Single) As Vector3
參數
- value1
- Vector3
第一個向量。
- value2
- Vector3
第二個向量。
- amount
- Single
介於 0 和 1 的值,表示 value2
的加權。
傳回
插補的向量。
適用於
.NET 9 及其他版本
產品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 (package-provided), 2.1 |
UWP | 10.0 |
public:
static System::Numerics::Vector3 Lerp(System::Numerics::Vector3 value1, System::Numerics::Vector3 value2, System::Numerics::Vector3 amount);
C#
public static System.Numerics.Vector3 Lerp (System.Numerics.Vector3 value1, System.Numerics.Vector3 value2, System.Numerics.Vector3 amount);
static member Lerp : System.Numerics.Vector3 * System.Numerics.Vector3 * System.Numerics.Vector3 -> System.Numerics.Vector3
Public Shared Function Lerp (value1 As Vector3, value2 As Vector3, amount As Vector3) As Vector3
參數
- value1
- Vector3
- value2
- Vector3
- amount
- Vector3
傳回
適用於
.NET 9
產品 | 版本 |
---|---|
.NET | 9 |