Registriert seit: 1. Aug 2009
447 Beiträge
Delphi 2009 Professional
|
AW: Dreidimensionales Array darstellen.
24. Aug 2010, 12:57
Delphi-Quellcode:
for x := 1 to 5 do
begin
for y := 1 to 5 do
begin
for z := 1 to 5 do
begin
glTranslatef(x/10,y/10,z/10);
glBegin(GL_QUADS);
Cube(0);
glEnd;
end;
end;
end;
Gibt leider nicht das Ergebnis. Ich glaub ich hab irgendwo in der Routine ein Problem.
Chuck Norris doesn't need backups. He just uploads his files and lets the world mirror them.
|