Searched defs:Rectangle_i (Results 1 – 1 of 1) sorted by relevance
37 struct Rectangle_i { struct39 int left;41 int top;43 int right;45 int bottom;47 int Width() const { return right - left; } in Width()49 int Height() const { return bottom - top; } in Height()51 Point_i Center() const { return Point_i{(left + right) / 2, (top + bottom) / 2}; } in Center()