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.h61 struct Rectangle_d { struct
63 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()