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

9 lines
173 B
ObjectPascal

// Анимация клона
uses Graph3D;
begin
var b := Box(0,0,1,1,3,2,RandomColor);
var b1 := b.Clone;
b1.MoveBy(3,0,0);
b1.AnimRotate(OrtZ,90).Begin;
end.