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

10 lines
219 B
ObjectPascal

uses Graph3D;
begin
var b := Sphere(Origin,1,Colors.Blue);
var (p1,p2,p3,p4) := (P3D(3,0,0),P3D(3,3,0),P3D(0,3,0),P3D(0,0,0));
b.MoveTo(p1);
b.AnimMoveTrajectory(Arr(p2,p3,p4,p1),3).Forever.Begin;
end.