Vector3d.add

Increment the components of this vector by the given values.

@param x the x component to add @param y the y component to add @param z the z component to add @return this

  1. Vector3d add(Vector3d v)
  2. Vector3d add(Vector3d v, Vector3d dest)
  3. Vector3d add(double x, double y, double z)
    struct Vector3d
    ref return
    add
    (
    double x
    ,
    double y
    ,
    double z
    )
  4. Vector3d add(double x, double y, double z, Vector3d dest)

Meta