Home | History | Annotate | Download | only in gfx

Lines Matching full:rect

18 // axis-aligned, unlike a Rect.
28 explicit QuadF(const RectF& rect)
29 : p1_(rect.x(), rect.y()),
30 p2_(rect.right(), rect.y()),
31 p3_(rect.right(), rect.bottom()),
32 p4_(rect.x(), rect.bottom()) {}
34 void operator=(const RectF& rect);