public static Matrix3x2 SmoothStepTo(this Matrix3x2 matrix, Matrix3x2 target, float percent)
 {
     return(Matrix3x2.SmoothStep(matrix, target, percent));
 }