Vector

Vector for coordinates storing and operations.

  1. struct Vector(T, char[] c)
  2. alias Vector(T, string coords) = Vector!(T, coords.dup)
    alias Vector(T, string coords) = Vector!(T, coords.dup)
  3. alias Vector2(T) = Vector!(T, "xz")
  4. alias Vector3(T) = Vector!(T, "xyz")
  5. alias Vector4(T) = Vector!(T, "xyzw")

Meta