Lines Matching defs:Point
26 class ACE_EXPORT Point {
28 Point() = default;
29 ~Point() = default;
30 Point(double x, double y) : x_(x), y_(y) {}
31 Point(double x, double y, SourceType sourceType) : x_(x), y_(y), sourceType_(sourceType) {}
32 Point(double x, double y, double screenX, double screenY) : x_(x), y_(y), screenX_(screenX), screenY_(screenY) {}
33 Point(double x, double y, double screenX, double screenY, SourceType sourceType)
87 void Rotate(const Point& center, double angle)
95 Point operator-(const Offset& offset) const
97 return Point(x_ - offset.GetX(), y_ - offset.GetY());
100 Point operator+(const Offset& offset) const
102 return Point(x_ + offset.GetX(), y_ + offset.GetY());
105 Offset operator-(const Point& point) const
110 bool operator==(const Point& point) const
115 bool operator!=(const Point& point) const