Inspiré de l'exploit en cercle parfait de Michael Bill; Écrit en C ++.
g++ -o run.out draw.cpp -framework ApplicationServices
Assurez-vous d'utiliser -framework ApplicationServices
lors de la compilation, sinon vous obtiendrez des erreurs.
Placez votre curseur au milieu du cercle blanc.
./run
Si vous souhaitez spécifier les paramètres d'exécution, utilisez-le à la place:
./run.out -wait 5000 -steps 40 -sleep 60 -r 250
Les valeurs d' wait
, steps
, sleep
et r
peuvent être modifiées en conséquence.
wait(ms) - wait time before the program starts to draw the circle
steps(n) - the circle is drawn in n steps
sleep(ms) - each step takes this amount of ms to run
r(px) - radius in px
Consultez l'exploit de Circle Perfect-Circle: https://github.com/michael-bill/perfect-circle/