X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=94d1cd57a8f176f3072fcc3672ae96ca180836f6;hp=e5e794784d3d170d533d42a261e50353bee6652a;hb=cfe7da763b5d8ef4252ddb94558abb080bbd893d;hpb=5e19040b00e135ead52e535165e079ee72059727 diff --git a/src/main.cpp b/src/main.cpp index e5e7947..94d1cd5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -81,14 +81,17 @@ int main(int argc, char ** argv) } else { - for(int i = 0; i < 8; ++i) + + for(int x = 0; x < 8; ++x) { - for (int j = 0; j < 8; ++j) + for (int y = 0; y < 8; ++y) { - doc.Add(((i^j)&1)?RECT_OUTLINE:RECT_FILLED, Rect(0.2+i-512.0,0.2+j-512.0,0.6,0.6)); + doc.Add(static_cast((x^y)%3), Rect(0.2+x-4.0,0.2+y-4.0,0.6,0.6)); } } + //doc.Add(IPDF::CIRCLE_FILLED, Rect(0.2,0.2,0.6,0.6)); + } Rect bounds(b[0],b[1],b[2],b[3]);