Azmyth.Vector.Sqrt C# (CSharp) Method

Sqrt() public method

public Sqrt ( ) : Vector
return 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)
            );
        }