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.
OldPascalProjects/Graphics/WPFObjects/gr_Star_Rotate_WPF.pas
2024-03-10 20:32:51 +03:00

17 lines
348 B
ObjectPascal

// Изменение свойств объекта StarWPF
uses WPFObjects, GraphWPF;
begin
var z := new StarWPF(Window.Width / 2, Window.Height / 2, Window.Height / 2 - 5, Window.Height / 4 + 16, 6, Colors.Red);
loop 20 do
begin
Sleep(100);
z.Count += 1;
end;
loop 200 do
begin
Sleep(10);
z.Rotate(1);
end;
end.