Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/pdf/framework/libs/pdfClient/
Drect.h79 struct Rectangle_f { struct
81 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()