Searched defs:Rectangle_d (Results 1 – 1 of 1) sorted by relevance
61 struct Rectangle_d { struct63 double left;65 double top;67 double right;69 double bottom;71 double Width() const { return right - left; } in Width()73 double Height() const { return bottom - top; } in Height()75 Point_d Center() const { return Point_d{(left + right) / 2, (top + bottom) / 2}; } in Center()