Accord.Math.Vector4.Abs C# (CSharp) 메소드

Abs() 공개 메소드

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