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.
2024-03-10 20:32:51 +03:00

19 lines
394 B
ObjectPascal

// Изменение свойств объекта StarABC
uses ABCObjects,GraphABC;
var z: StarABC;
begin
z := new StarABC(WindowWidth div 2,WindowHeight div 2,WindowHeight div 2 - 5,WindowHeight div 4 + 16,6,clRed);
for var i:=1 to 20 do
begin
Sleep(100);
z.Count := z.Count + 1;
end;
for var i:=1 to 180 do
begin
Sleep(10);
z.Angle := z.Angle + 1;
end;
end.