This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-06-20 21:52:24 +03:00

16 lines
294 B
ObjectPascal

uses GraphWPF;
begin
Window.Title := 'Простая анимация';
var x := 30;
Brush.Color := Colors.Beige;
Circle(x,50,20);
loop 600 do
begin
Sleep(10);
Window.Clear;
x += 1;
Circle(x,50,20);
Window.Title := '' + (Milliseconds div 100)/10;
end;
end.