Home
last modified time | relevance | path

Searched defs:Rectangle_d (Results 1 – 1 of 1) sorted by relevance

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Drect.h55 struct Rectangle_d { struct
57 double left;
59 double top;
61 double right;
63 double bottom;
65 double Width() const { return right - left; } in Width()
67 double Height() const { return bottom - top; } in Height()
69 Point_d Center() const { return Point_d{(left + right) / 2, (top + bottom) / 2}; } in Center()