Inspiriert von Michael Bills Perfect-Circle-Exploit; Geschrieben in C ++.
g++ -o run.out draw.cpp -framework ApplicationServices
Stellen Sie sicher, dass -framework ApplicationServices
verwenden, während Sie erstellen, da sonst Fehler erhalten.
Platzieren Sie Ihren Cursor in der Mitte des weißen Kreises.
./run
Wenn Sie ausführende Parameter speisen möchten, verwenden Sie dies stattdessen:
./run.out -wait 5000 -steps 40 -sleep 60 -r 250
Werte des wait
, steps
, sleep
und r
können entsprechend geändert werden.
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
Schauen Sie sich Michaels Perfect-Circle Exploit an: https://github.com/michael-bill/perfect-circle/