X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/graphlib.git/blobdiff_plain/6d4e56a6015bf97f5f5c09dd95bd0a1ec66a8146..c05e66a47050a15645c8d9398b90053d6c1f018e:/exemple.cpp diff --git a/exemple.cpp b/exemple.cpp index 87fb0ec..d4722e7 100644 --- a/exemple.cpp +++ b/exemple.cpp @@ -37,7 +37,7 @@ float frand() return rand() / (float )RAND_MAX; } -void exemple1(DrawingWindow &w) +void exemple1(DrawingWindow& w) { const int cx = w.width / 2; const int cy = w.height / 2; @@ -52,7 +52,7 @@ void exemple1(DrawingWindow &w) } } -void exemple2(DrawingWindow &w) +void exemple2(DrawingWindow& w) { int width = std::min(w.width, w.height) / 2; for (int z = 0; z <= width; z++) { @@ -78,7 +78,7 @@ void exemple2(DrawingWindow &w) } } -void exemple3(DrawingWindow &w) +void exemple3(DrawingWindow& w) { while (1) { int x1 = rand() % w.width;