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

13 lines
300 B
ObjectPascal

// Изменение свойств объекта StarWPF
uses WPFObjects;
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;
z.AnimRotate(200,2);
end.