X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=5fa94b7572bce4481816a64ae6dd5113ffc80cbd;hp=273d82a5bd0901ca32c4c044bf55b0c86b7a9764;hb=ee71bff635865bd443eed14e3558f72446439ab3;hpb=245ccc8576d4bd29ab04d506ddb0c44b04a67e39 diff --git a/src/main.cpp b/src/main.cpp index 273d82a..5fa94b7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,7 +10,8 @@ using namespace IPDF; int main(int argc, char ** argv) { Document doc; - doc.Add(0.5, 0.5, 0.5, 0.5); + srand(time(NULL)); + doc.Add(Random(), Random(), Random(), Random()); View view(doc);