[]
        
(Showing Draft Content)

C1.Framework.Mathematics.Vector-1.-ctor

Vector Constructor

Vector()

Initializes a new instance of the Vector<T> class.

Declaration
public Vector()

Vector(int)

Initializes a new instance of the Vector<T> class.

Declaration
public Vector(int dimension)
Parameters
Type Name Description
int dimension

A int indicates the dimension of the vector.

Remarks

The dimension of the vector must be bigger than or equal zero.

Vector(params T[])

Initializes a new instance of the Vector<T> class.

Declaration
public Vector(params T[] items)
Parameters
Type Name Description
T[] items

A T array indicates the items.