X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Frect.h;h=b092fbe77072359b096b31f0e64f73ead9da19cc;hp=5c600f3dc2ed7ff4fced7254e4c9179f1d861999;hb=58a6719da2337b3e6e20b581885f170bbe5fc480;hpb=5f600e9c0d22c09bd60ef3c7245dbecc8d35d576 diff --git a/src/rect.h b/src/rect.h index 5c600f3..b092fbe 100644 --- a/src/rect.h +++ b/src/rect.h @@ -42,10 +42,10 @@ namespace IPDF Rect out; 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; + out.x = (r.x - view.x) / w; //r.x = out.x *w + view.x + out.y = (r.y - view.y) / h; // r.y = out.y*h + view.y + out.w = r.w / w; // r.w = out.w * w + out.h = r.h / h; // r.h = out.h * h return out; }