Vector.Vector

  1. struct Vector(T, int _Dim : 2)
  2. struct Vector(T, int _Dim : 3)
  3. struct Vector(T, int _Dim : 4)
    struct Vector(T, int Dim)

Constructors

this
this(U x)

Constructor for scalars

this
this(U x, U y, U z, U w)

Constructor for parameter lists

this
this(Vector4T!T vec)

Constructor for vectors of same type

this
this(T[] list)

Constructor for explicit lists

Meta