Searched defs:Point (Results 1 – 3 of 3) sorted by relevance
25 struct Point { struct49 static void GetCheckPoints(Point center, std::vector<Point> &points); argument
71 struct Point { struct72 Point() : px_(0), py_(0) {}; in Point() argument73 Point(int32_t px, int32_t py) : px_(px), py_(py) {}; in Point() argument74 int32_t px_;75 int32_t py_;
27 Point(double x, double y) : x_(x), y_(y) {} in Point() function