X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=8ead652c57da1a75fb852ead475a594220589a48;hp=e5e794784d3d170d533d42a261e50353bee6652a;hb=33356addacfe4296ecb613c6c4696f082e351159;hpb=5e19040b00e135ead52e535165e079ee72059727 diff --git a/src/main.cpp b/src/main.cpp index e5e7947..8ead652 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -81,12 +81,24 @@ int main(int argc, char ** argv) } else { - for(int i = 0; i < 8; ++i) + doc.AddBezierData(Bezier(0,0,0,1,1,0)); + doc.AddBezierData(Bezier(0,0,1,0,0,1)); + doc.AddBezierData(Bezier(0,0,1,1,1,0)); + doc.AddBezierData(Bezier(0,1,1,0,0,1)); + + + + 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(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); } }