Double.Lerp(Double, Double, Double) 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.
Performs a linear interpolation between two values based on the given weight.
public:
static double Lerp(double value1, double value2, double amount) = System::Numerics::IFloatingPointIeee754<double>::Lerp;
public static double Lerp (double value1, double value2, double amount);
static member Lerp : double * double * double -> double
Public Shared Function Lerp (value1 As Double, value2 As Double, amount As Double) As Double
Parameters
- value1
- Double
The first value, which is intended to be the lower bound.
- value2
- Double
The second value, which is intended to be the upper bound.
- amount
- Double
A value, intended to be between 0 and 1, that indicates the weight of the interpolation.
Returns
The interpolated value.
Implements
Applies to
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.