Lines Matching refs:y
7 public function __construct($x, $y) {9 $this->y = $y;17 return $this->y;23 + (($other->y - $this->y) * ($other->y - $this->y))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);40 private $y;