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

12 lines
357 B
ObjectPascal

uses Graph3D;
begin
//Lights.AddDirectionalLight(GrayColor(100),V3D(-1,-1,-1));
var p := P3D(-3,3,3);
Sphere(p,0.3,Colors.White);
View3D.ShowGridLines := false;
Cylinder(0,0,0,5,2,True,Colors.Yellow);
Rectangle3D(0,0,-0.01,15,15,OrtZ,OrtX,ImageMaterial('трава.jpg',0.2,0.2));
Sleep(2000);
Lights.AddPointLight(GrayColor(64),p);
end.