Lines Matching refs:point
6 * Represent a point.
22 * @return int The x-coordinate of the point.
32 * @return int The y-coordinate of the point.
40 * Set the point to a new position.
70 * Check whether the given point is the same as the instance.
72 * @param WebDriverPoint $point The point to be compared with.
75 public function equals(self $point)
77 return $this->x === $point->getX() &&
78 $this->y === $point->getY();