Legacy OpenGL Display -AusgabeC++

Programme in C++. Entwicklerforum
Anonymous
 Legacy OpenGL Display -Ausgabe

Post by Anonymous »

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>

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post