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

11 lines
297 B
ObjectPascal

// Иллюстрация прозрачности
uses GraphABC;
begin
for var Transparency:=0 to 255 do
begin
Brush.Color := ARGB(Transparency,Random(256),Random(256),Random(256));
FillCircle(Random(Window.Width),Random(Window.Height),Random(20,60));
sleep(100);
end;
end.