Lines Matching refs:x
7 public function __construct($x, $y) {8 $this->x = $x;13 return $this->x;22 (($other->x - $this->x) * ($other->x - $this->x))31 public function addIncrement($x, $y) {32 return new Point($this->x + $x, $this->Y + $y);36 return sprintf("Point<%d, %d>", $this->x, $this->y);39 private $x;