Searched defs:PointI (Results 1 – 1 of 1) sorted by relevance
226 inline PointI::PointI() noexcept : x_(0), y_(0) {} in PointI() function228 inline PointI::PointI(const PointI& p) noexcept : x_(p.GetX()), y_(p.GetY()) {} in PointI() function230 inline PointI::PointI(int x, int y) noexcept : x_(x), y_(y) {} in PointI() function