add(...args) {
    let vector = Vector.makeVector(args)
    return new Vector(this.x + vector.x, this.y + vector.y)
  }