Accord.Math.Vector3.Abs C# (CSharp) Method

Abs() public method

Calculate absolute values of the vector.
public Abs ( ) : Vector3
return Vector3
        public Vector3 Abs( )
        {
            return new Vector3( System.Math.Abs( X ), System.Math.Abs( Y ), System.Math.Abs( Z ) );
        }