AcTools.Utils.MathUtils.Acos C# (CSharp) Method

Acos() public static method

public static Acos ( this v ) : double
v this
return double
        public static double Acos(this double v) => Math.Acos(v);
        public static float Acos(this float v) => (float)Math.Acos(v);

Same methods

MathUtils::Acos ( this v ) : float