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