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

Sin() public static method

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

Same methods

MathUtils::Sin ( this v ) : float