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

8 lines
200 B
ObjectPascal

uses Graph3D;
begin
var c := Cube(-2,0,0,2,Colors.Beige);
var c1 := Cube(2,0,0,2,Colors.Green);
var a := c.AnimRotate(OrtZ,360,4).Forever * c1.AnimRotate(OrtZ,360,1).Forever;
a.Begin;
end.