Vector3.this

Construct the vector from its coordinates

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

Parameters

X T

X coordinate

Y T

Y coordinate

Z T

Z coordinate

Meta