X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=91ce90bdeee949629d55f23b884c1402b7078bfa;hp=9b33453d65559c8e8e80848f7423a0e032e5d60d;hb=5f8aa3cf6cb5f628c7131f2ddf710562e10ad32e;hpb=c9ce50e17952b0feeec68758444a50302a0aafba diff --git a/src/main.cpp b/src/main.cpp index 9b33453..91ce90b 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 < 1024; ++i) + + for(int x = 0; x < 8; ++x) { - for (int j = 0; j < 1024; ++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::RECT_OUTLINE, Rect(0.4,0.4,0.6,0.6)); + } Rect bounds(b[0],b[1],b[2],b[3]);