Vector2.Lerp Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Lerp(Vector2, Vector2, Vector2) | |
Lerp(Vector2, Vector2, Single) |
Performs a linear interpolation between two vectors based on the given weighting. |
Lerp(Vector2, Vector2, Vector2)
public:
static System::Numerics::Vector2 Lerp(System::Numerics::Vector2 value1, System::Numerics::Vector2 value2, System::Numerics::Vector2 amount);
public static System.Numerics.Vector2 Lerp(System.Numerics.Vector2 value1, System.Numerics.Vector2 value2, System.Numerics.Vector2 amount);
static member Lerp : System.Numerics.Vector2 * System.Numerics.Vector2 * System.Numerics.Vector2 -> System.Numerics.Vector2
Public Shared Function Lerp (value1 As Vector2, value2 As Vector2, amount As Vector2) As Vector2
Parameters
- value1
- Vector2
- value2
- Vector2
- amount
- Vector2
Returns
Applies to
Lerp(Vector2, Vector2, Single)
- Source:
- Vector2.cs
- Source:
- Vector2.cs
- Source:
- Vector2.cs
Performs a linear interpolation between two vectors based on the given weighting.
public:
static System::Numerics::Vector2 Lerp(System::Numerics::Vector2 value1, System::Numerics::Vector2 value2, float amount);
public static System.Numerics.Vector2 Lerp(System.Numerics.Vector2 value1, System.Numerics.Vector2 value2, float amount);
static member Lerp : System.Numerics.Vector2 * System.Numerics.Vector2 * single -> System.Numerics.Vector2
Public Shared Function Lerp (value1 As Vector2, value2 As Vector2, amount As Single) As Vector2
Parameters
- value1
- Vector2
The first vector.
- value2
- Vector2
The second vector.
- amount
- Single
A value between 0 and 1 that indicates the weight of value2
.
Returns
The interpolated vector.
Remarks
The behavior of this method changed in .NET 5. For more information, see Behavior change for Vector2.Lerp and Vector4.Lerp.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET