X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Frect.h;h=3c4a105b664b23e66a3eeba9163b052af554f290;hp=bf7a242a1c50970868f9d3815a27e8c41fce4633;hb=36b4b285d3dbdab423511e7188c37bd1d0443edb;hpb=b04b227b04626afb2a8bf665dbcbf035bfa1cef8 diff --git a/src/rect.h b/src/rect.h index bf7a242..3c4a105 100644 --- a/src/rect.h +++ b/src/rect.h @@ -15,15 +15,15 @@ namespace IPDF { std::stringstream s; // float conversion needed because it is fucking impossible to get ostreams working with template classes - s << "{" << Float(x) << ", " << Float(y) << ", " << Float(w) << ", " << Float(h) << "}"; + s << "{" << Float(x) << ", " << Float(y) << ", " << Float(x + w) << ", " << Float(y + h) << " (w: " << Float(w) <<", h: " << Float(h) <<")}"; return s.str(); } inline bool PointIn(Real pt_x, Real pt_y) const { - if (pt_x < x) return false; - if (pt_y < y) return false; - if (pt_x > x + w) return false; - if (pt_y > y + h) return false; + if (pt_x <= x) return false; + if (pt_y <= y) return false; + if (pt_x >= x + w) return false; + if (pt_y >= y + h) return false; return true; } }; @@ -31,10 +31,12 @@ namespace IPDF inline Rect TransformRectCoordinates(const Rect& view, const Rect& r) { Rect out; - out.x = (r.x - view.x) / view.w; - out.y = (r.y - view.y) / view.h; - out.w = r.w / view.w; - out.h = r.h / view.h; + Real w = (view.w == Real(0))?Real(1):view.w; + Real h = (view.h == Real(0))?Real(1):view.h; + out.x = (r.x - view.x) / w; + out.y = (r.y - view.y) / h; + out.w = r.w / w; + out.h = r.h / h; return out; }