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