Michael Bill의 완벽한 원반에서 영감을 얻었습니다. C ++로 작성되었습니다.
g++ -o run.out draw.cpp -framework ApplicationServices
-framework ApplicationServices
사용하여 컴파일하면 오류가 발생합니다.
커서를 흰색 원의 한가운데에 놓으십시오.
./run
매개 변수 실행 실행을 자극하려면 대신 사용하십시오.
./run.out -wait 5000 -steps 40 -sleep 60 -r 250
wait
, steps
, sleep
및 r
의 값은 그에 따라 변경 될 수 있습니다.
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
Michael 's Perfect-Circle Exploit을 확인하십시오 : https://github.com/michael-bill/perfect-circle/