Vector2d.add

Add <code>(x, y)</code> to this vector.

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

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

Meta