AcTools.Utils.MathUtils.Sin C# (CSharp) Метод

Sin() публичный статический Метод

public static Sin ( this v ) : double
v this
Результат 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