Поделиться через


Vector3.Lerp Метод

Определение

Перегрузки

Lerp(Vector3, Vector3, Single)

Выполняет линейную интерполяцию между двумя векторами на основе заданного взвешивания.

Lerp(Vector3, Vector3, Vector3)

Lerp(Vector3, Vector3, Single)

Исходный код:
Vector3.cs
Исходный код:
Vector3.cs
Исходный код:
Vector3.cs

Выполняет линейную интерполяцию между двумя векторами на основе заданного взвешивания.

public:
 static System::Numerics::Vector3 Lerp(System::Numerics::Vector3 value1, System::Numerics::Vector3 value2, float amount);
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.

Возвращаемое значение

Интерполированный вектор.

Применяется к

Lerp(Vector3, Vector3, Vector3)

public:
 static System::Numerics::Vector3 Lerp(System::Numerics::Vector3 value1, System::Numerics::Vector3 value2, System::Numerics::Vector3 amount);
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

Возвращаемое значение

Применяется к