@@ -753,10 +753,14 @@ public static partial class Math
753753 public static sbyte Abs ( sbyte value ) { throw null ; }
754754 public static float Abs ( float value ) { throw null ; }
755755 public static double Acos ( double d ) { throw null ; }
756+ public static double Acosh ( double d ) { throw null ; }
756757 public static double Asin ( double d ) { throw null ; }
758+ public static double Asinh ( double d ) { throw null ; }
757759 public static double Atan ( double d ) { throw null ; }
758760 public static double Atan2 ( double y , double x ) { throw null ; }
761+ public static double Atanh ( double d ) { throw null ; }
759762 public static long BigMul ( int a , int b ) { throw null ; }
763+ public static double Cbrt ( double d ) { throw null ; }
760764 public static decimal Ceiling ( decimal d ) { throw null ; }
761765 public static double Ceiling ( double a ) { throw null ; }
762766 public static byte Clamp ( byte value , byte min , byte max ) { throw null ; }
@@ -844,9 +848,13 @@ public static partial class MathF
844848 {
845849 public static float Abs ( float x ) { throw null ; }
846850 public static float Acos ( float x ) { throw null ; }
851+ public static float Acosh ( float x ) { throw null ; }
847852 public static float Asin ( float x ) { throw null ; }
853+ public static float Asinh ( float x ) { throw null ; }
848854 public static float Atan ( float x ) { throw null ; }
855+ public static float Atanh ( float x ) { throw null ; }
849856 public static float Atan2 ( float y , float x ) { throw null ; }
857+ public static float Cbrt ( float x ) { throw null ; }
850858 public static float Ceiling ( float x ) { throw null ; }
851859 public static float Cos ( float x ) { throw null ; }
852860 public static float Cosh ( float x ) { throw null ; }
0 commit comments