Sdílet prostřednictvím


Vector2.Lerp Metoda

Definice

Přetížení

Lerp(Vector2, Vector2, Single)

Provede lineární interpolaci mezi dvěma vektory na základě dané váhy.

Lerp(Vector2, Vector2, Vector2)

Lerp(Vector2, Vector2, Single)

Zdroj:
Vector2.cs
Zdroj:
Vector2.cs
Zdroj:
Vector2.cs

Provede lineární interpolaci mezi dvěma vektory na základě dané váhy.

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

Parametry

value1
Vector2

První vektor.

value2
Vector2

Druhý vektor.

amount
Single

Hodnota mezi 0 a 1, která označuje váhu hodnoty value2.

Návraty

Interpolovaný vektor.

Poznámky

Chování této metody se změnilo v .NET 5. Další informace najdete v tématech Změna chování pro Vector2.Lerp a Vector4.Lerp.

Platí pro

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

Parametry

value1
Vector2
value2
Vector2
amount
Vector2

Návraty

Platí pro