Legacy OpenGL Display -Ausgabe

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Legacy OpenGL Display -Ausgabe

by Anonymous » Yesterday, 05:08

Ich benutze Legacy OpenGL, um einen Fischtank zu machen: < /p>
#include
#include

float fishPosX = 0.0f;
float fishDirection = -1.0f;
float rotationAngle = 0.0f;
int rotating = 0;

void setupGraphics() {
glEnable(GL_DEPTH_TEST); // Enable depth testing
glDisable(GL_CULL_FACE); // Disable back-face culling for debugging
glDisable(GL_LIGHTING); // Disable lighting temporarily for visibility
glClearColor(0.0, 0.0, 0.0, 1.0); // Black background for contrast
glLineWidth(3.0); // Increase wireframe visibility
}

void display() {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();

printf("Rendering frame. Fish position: %f, Rotation: %f\n", fishPosX, rotationAngle);

// Draw large fish
glPushMatrix();
glTranslatef(fishPosX, 0.0f, -400.0f);
glRotatef(rotationAngle, 0.0f, 1.0f, 0.0f);
glutWireOctahedron();
glPopMatrix();

glutSwapBuffers();
}

void update(int value) {
if (!rotating) {
fishPosX += 5.0f * fishDirection;
if (fishPosX < -396.0f || fishPosX > 396.0f) {
rotating = 1;
}
} else {
rotationAngle += 5.0f * fishDirection;
if (rotationAngle >= 180.0f || rotationAngle
Es scheint, dass die Fische erstellt werden, aber ich kann sie einfach nicht sehen. Was lässt meinen Fisch nicht in der Leinwand angezeigt werden? Vielleicht ist es ein Problem mit der Kamerapositionierung? Ich habe versucht, die Farben zu verändern, hat nicht funktioniert. Ich habe Glulookat ausprobiert, das das Programm aus irgendeinem Grund herausfehlert. Ich habe versucht, ein grünes Quadrat in die Mitte des Bildschirms anzuzeigen, und als das nicht funktionierte, wurde mir klar>

Top