NFloat.Lerp(NFloat, NFloat, NFloat) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Effectue une interpolation linéaire entre deux valeurs en fonction de la pondération donnée.
public:
static System::Runtime::InteropServices::NFloat Lerp(System::Runtime::InteropServices::NFloat value1, System::Runtime::InteropServices::NFloat value2, System::Runtime::InteropServices::NFloat amount) = System::Numerics::IFloatingPointIeee754<System::Runtime::InteropServices::NFloat>::Lerp;
public static System.Runtime.InteropServices.NFloat Lerp (System.Runtime.InteropServices.NFloat value1, System.Runtime.InteropServices.NFloat value2, System.Runtime.InteropServices.NFloat amount);
static member Lerp : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Lerp (value1 As NFloat, value2 As NFloat, amount As NFloat) As NFloat
Paramètres
- value1
- NFloat
Première valeur, qui est destinée à être la limite inférieure.
- value2
- NFloat
Deuxième valeur, qui est destinée à être la limite supérieure.
- amount
- NFloat
Valeur, destinée à être comprise entre 0 et 1, qui indique le poids de l’interpolation.
Retours
Valeur interpolée.