/** * @param Coordinates $other * @return Coordinates */ public function subtract($other) { return $this->add($other->multiply(-1)); }