Azmyth.Vector.Sqrt C# (CSharp) 메소드

Sqrt() 공개 메소드

public Sqrt ( ) : Vector
리턴 Vector
        public Vector Sqrt()
        {
            return new Vector
            (
                (int)System.Math.Sqrt((double)_x),
                (int)System.Math.Sqrt((double)_y),
                (int)System.Math.Sqrt((double)_z)
            );
        }