Pohyb po kružnici
Nasledujúci algoritmus zariadi pohyb po kružnici pomocou jednoduchých goniometrické funkcie. Body sa pomaly vykresľujú po obvode kružnice.
Delphi:
Var Uhel:Real; Procedure OpisKruh(X,Y,Radius :Integer; Color:Byte); Var Px,Py:Integer; Begin Uhel:=0; While Uhel <=2*Pi Do Begin Px:=Round(X+Cos(Uhel)* Radius); Py:=Round(Y+Sin(Uhel)* Radius); PutPixel(Px,Py,Color); Uhel:=Uhel+0.001; End; End;