Searched defs:Rectangle_f (Results 1 – 1 of 1) sorted by relevance
79 struct Rectangle_f { struct81 float left;83 float top;85 float right;87 float bottom;89 float Width() const { return right - left; } in Width()91 float Height() const { return bottom - top; } in Height()93 Point_f Center() const { return Point_f{(left + right) / 2, (top + bottom) / 2}; } in Center()