DataStore.AngleConverter.toRadian C# (CSharp) 메소드

toRadian() 개인적인 메소드

private toRadian ( float degree ) : float
degree float
리턴 float
        private float toRadian(float degree)
        {
            return degree / 180 * PI;
        }