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

Vector4() public method

Initializes a new instance of the Vector4 structure.
public Vector4 ( float value ) : System
value float Value, which is set to all 4 coordinates of the vector.
return System
        public Vector4( float value )
        {
            X = Y = Z = W = value;
        }

Same methods

Vector4::Vector4 ( float x, float y, float z, float w ) : System