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

11 lines
328 B
ObjectPascal

uses Graph3D;
begin
View3D.ShowGridLines := False;
var disc := Cylinder(0,0,0,0.2,6,Colors.DeepPink);
var r := 5;
foreach var x in PartitionPoints(0,2*Pi,12) do
disc.AddChild(Sphere(r*cos(x),r*sin(x),0.2,0.1,Colors.White));
disc.AnimRotate(OrtZ,360,2).AccelerationRatio(1,1).AutoReverse.Forever.Begin;
end.