Vector.Vector

  1. struct Vector(T, int _Dim : 2)
  2. struct Vector(T, int _Dim : 3)
    struct Vector(T, int Dim)
    struct Vector (
    T
    int _Dim : 3
    ) {
    T[3] data;
    }
  3. struct Vector(T, int _Dim : 4)

Constructors

this
this(U x)

Constructor for scalars

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

Constructor for parameter lists

this
this(Vector3T!T vec)

Constructor for vectors of same type

this
this(T[] list)

Constructor for explicit lists

Meta