Vector3.this

Construct the vector from another type of vector

  1. this(T X, T Y, T Z)
  2. this(Vector3!(E) otherVector)
    struct Vector3(T)
    this
    (
    E
    )
    if (
    isNumeric!(T) ||
    is(T == bool)
    )

Parameters

otherVector Vector3!(E)

Vector to convert.

Meta