X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=cd74d6d114877773b132883ec644fd892a9d1b16;hp=c14a5863bded6996cb499ef2bbcf74b6ef7547db;hb=87b1d05df45663252c86a03cb2c713c6dc3e9a98;hpb=f59f24dff392428d7219ba2d6be5e1e81c344ee0 diff --git a/src/main.cpp b/src/main.cpp index c14a586..cd74d6d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -90,11 +90,15 @@ int main(int argc, char ** argv) for(int x = 0; x < 8; ++x) { + for (int y = 0; y < 8; ++y) { //doc.Add(static_cast((x^y)%3), Rect(0.2+x-4.0,0.2+y-4.0,0.6,0.6)); doc.Add(BEZIER, Rect(0.2+x-4.0, 0.2+y-4.0, 0.6,0.6), (x^y)%3); } + + //doc.Add(RECT_OUTLINE, Rect(0.1,0.1,0.8,0.8), 0); + //doc.Add(BEZIER, Rect(0,0,1,1), 0); } }