Vector3.opOpAssign

Assign Add/Subtract with another vector3.

  1. Vector3!(T) opOpAssign(Vector3!(E) otherVector)
    struct Vector3(T)
    ref
    opOpAssign
    (
    string op
    E
    )
    if (
    isNumeric!(E) &&
    (
    (op == "+") ||
    (op == "-")
    )
    )
    if (
    isNumeric!(T) ||
    is(T == bool)
    )
  2. Vector3!(T) opOpAssign(E num)

Meta