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

ToArray() public method

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