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

ToArray() public method

Returns array representation of the vector.
public ToArray ( ) : float[]
return float[]
        public float[] ToArray( )
        {
            return new float[4] { X, Y, Z, W };
        }