Actual fix for when `uname -i` doesn't work
[ipdf/code.git] / src / ipdf.h
1 #ifndef _IPDF_H
2 #define _IPDF_H
3
4 #include "common.h"
5 #include "real.h"
6
7 namespace IPDF
8 {
9
10         inline Real Random(Real max=1, Real min=0)
11         {
12                 return min + (max-min) * ((Real)(rand() % (int)1e6) / 1e6);
13         }
14
15         typedef unsigned ObjectID;
16         typedef enum {RECT_FILLED, RECT_OUTLINE} ObjectType;
17
18         enum DocChunkTypes
19         {
20                 CT_NUMOBJS,
21                 CT_OBJTYPES,
22                 CT_OBJBOUNDS
23         };
24
25         struct Rect
26         {
27                 Real x; Real y; Real w; Real h;
28                 Rect() = default; // Needed so we can fread/fwrite this struct
29                 Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {}
30                 std::string Str() 
31                 {
32                         std::stringstream s;
33                         s << "{" << x << ", " << y << ", " << w << ", " << h << "}";
34                         return s.str();
35                 }
36         };
37
38         struct Objects
39         {
40                 std::vector<ObjectType> types;          
41                 std::vector<Rect> bounds;
42         };
43
44         class View;
45 }
46
47
48 #endif //_IPDF_H

UCC git Repository :: git.ucc.asn.au