Fusion.Core.Mathematics.Matrix3x2.SmoothStep C# (CSharp) Méthode

SmoothStep() public static méthode

Performs a cubic interpolation between two matrices.
public static SmoothStep ( Matrix3x2 start, Matrix3x2 end, float amount ) : Matrix3x2
start Matrix3x2 Start matrix.
end Matrix3x2 End matrix.
amount float Value between 0 and 1 indicating the weight of .
Résultat Matrix3x2
        public static Matrix3x2 SmoothStep(Matrix3x2 start, Matrix3x2 end, float amount)
        {
            Matrix3x2 result;
            SmoothStep(ref start, ref end, amount, out result);
            return result;
        }

Same methods

Matrix3x2::SmoothStep ( Matrix3x2 &start, Matrix3x2 &end, float amount, Matrix3x2 &result ) : void