X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=src%2Frect.h;h=5c600f3dc2ed7ff4fced7254e4c9179f1d861999;hb=71df61ab8ea302247ad35ccdc973bc8e0cafd5b1;hp=7a0f1e1e286a134cda959cb5be7ec3778886443e;hpb=7bd1c291a120559e209996a572f437cbe6f3e4a4;p=ipdf%2Fcode.git diff --git a/src/rect.h b/src/rect.h index 7a0f1e1..5c600f3 100644 --- a/src/rect.h +++ b/src/rect.h @@ -9,8 +9,8 @@ namespace IPDF struct Rect { Real x; Real y; Real w; Real h; - Rect() = default; // Needed so we can fread/fwrite this struct - Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {} + //Rect() = default; // Needed so we can fread/fwrite this struct + Rect(Real _x=0, Real _y=0, Real _w=1, Real _h=1) : x(_x), y(_y), w(_w), h(_h) {} std::string Str() const { std::stringstream s;