Accord.Math.Vector4.ToVector3 C# (CSharp) Method

ToVector3() public method

Converts the vector to a 3D vector.
public ToVector3 ( ) : Vector3
return Vector3
        public Vector3 ToVector3( )
        {
            return new Vector3( X / W, Y / W, Z / W );
        }
    }