X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fipdf.h;h=d6dc955cc0f1c434efa84251bf6413168c3393fc;hp=33962d65a40843b6c57d9b0ab748b12d3697ae99;hb=a269b3e29535918a390f448829a3459e4853425b;hpb=e24f0693b4e3989e625448009175c06e1e6e08d4 diff --git a/src/ipdf.h b/src/ipdf.h index 33962d6..d6dc955 100644 --- a/src/ipdf.h +++ b/src/ipdf.h @@ -1,10 +1,47 @@ #ifndef _IPDF_H #define _IPDF_H +#include "common.h" +#include "real.h" + namespace IPDF { - typedef float Real; - inline float RealToFloat(Real r) {return r;} + + inline Real Random(Real max=1, Real min=0) + { + return min + (max-min) * ((Real)(rand() % (int)1e6) / 1e6); + } + + typedef unsigned ObjectID; + typedef enum {RECT_FILLED, RECT_OUTLINE} ObjectType; + + enum DocChunkTypes + { + CT_NUMOBJS, + CT_OBJTYPES, + CT_OBJBOUNDS + }; + + 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) {} + std::string Str() + { + std::stringstream s; + s << "{" << x << ", " << y << ", " << w << ", " << h << "}"; + return s.str(); + } + }; + + struct Objects + { + std::vector types; + std::vector bounds; + }; + + class View; }