11 Real x; Real y; Real w; Real h;
12 Rect() = default; // Needed so we can fread/fwrite this struct
13 Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {}
14 std::string Str() const
17 // float conversion needed because it is fucking impossible to get ostreams working with template classes
18 s << "{" << Float(x) << ", " << Float(y) << ", " << Float(w) << ", " << Float(h) << "}";