コード例 #1
0
ファイル: Coordinates.php プロジェクト: elaor/php-playground
 /**
  * @param Coordinates $other
  * @return Coordinates
  */
 public function subtract($other)
 {
     return $this->add($other->multiply(-1));
 }