OpenGL:绘制2个圆柱体

OpenGL: draw 2 cylinder

本文关键字:圆柱体 2个 绘制 OpenGL      更新时间:2023-10-16

我试图绘制两个圆柱体,都填充了相同的纹理,但我已经设法只绘制了第一个,这是我的绘制函数:

void display(void)
{
    // Projection plane
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    //a->draw(mouseY);
    //draw first cylinder WORKING
    glPushMatrix();
        glRotatef(mouseY, 0, 0, 1); 
        quadratic = gluNewQuadric();
        gluQuadricNormals(quadratic, GLU_SMOOTH);
        gluQuadricTexture(quadratic, GL_TRUE);
        glMatrixMode(GL_TEXTURE);
            glLoadIdentity();
            glRotatef(90,0,0,1);
            glTranslatef(0,-1.0,0);
        glMatrixMode(GL_PROJECTION);
        gluCylinder(quadratic,fh_cyl,fh_cyl,fw_cyl,50,1000);
        if(!exec) //used only one time to get a visible cylinder
        {
            glTranslatef(fX_cylpos,fY_cylpos,0);
            glRotatef(90, 0.0, 1, 0.0); //rotate object 90° on Y axis
            glRotatef(fangle_cyl, 1.0, 0.0, 0.0); //0° = vertical / 90° = horizontal
            exec=true;
        }
    glPopMatrix();
    glPushMatrix();
        //draw second cylinder NOT WORKING
        glRotatef(mouseY, 0, 0, 1);
        quadratic2 = gluNewQuadric();
        gluQuadricNormals(quadratic2, GLU_SMOOTH);
        gluQuadricTexture(quadratic2, GL_TRUE);
        gluCylinder(quadratic2,fh_cyl,fh_cyl,fw_cyl,50,1000);
        if(!exec2) 
        {
            glTranslatef(fX_cylpos+200,fY_cylpos,0);
            glRotatef(90, 0.0, 1, 0.0); //rotate object 90° on Y axis
            glRotatef(fangle_cyl, 1.0, 0.0, 0.0);  //0° = vertical / 90° = horizontal      
            exec2=true;
        }
    glPopMatrix();
   //b->draw(mouseY);
   glutSwapBuffers();
}

这是重塑函数:

void reshape(int w, int h)
{
   glViewport (0, 0, (GLsizei) w, (GLsizei) h);
   glLoadIdentity();
   glMatrixMode(GL_PROJECTION);
   //glOrtho(-1000.0, 1000.0*(screen_h/screen_w), -1000.0, 1000.0*(screen_h/screen_w), 1000.0, -110.0);
   glOrtho(fOrtoXinit, fOrtoXend, fOrtoYinit, fOrtoYend , 1000, -1000.0);
   glMatrixMode(GL_MODELVIEW);
}

if语句中的代码用于垂直绘制圆柱体,如下图所示,然后用鼠标沿x轴旋转圆柱体以滚动数字:预览

感谢Reto Koradi的回复,我已经设法画了2个圆柱体,同时我仍然有两个问题:1. 我不知道我需要改变什么才能把一个圆柱放在另一个圆柱旁边;2. 我认为我的解决方案,画一个垂直的圆柱体使用if语句不是一个好方法…

编辑后的代码:

if(!exec) //basically IF is not used anymore
{
    glTranslatef(fX_cylpos,fY_cylpos,0);
    glRotatef(90, 0.0, 1, 0.0); //rotate object 90° on Y axis
    glRotatef(fangle_cyl, 1.0, 0.0, 0.0); //0° = vertical / 90° = horizontal
    //exec=true;
}
gluCylinder(quadratic,fh_cyl,fh_cyl,fw_cyl,50,1000);            
glPopMatrix();
glPushMatrix();
//draw second cylinder NOT WORKING
glRotatef(mouseY, 0, 0, 1);
quadratic2 = gluNewQuadric();
gluQuadricNormals(quadratic2, GLU_SMOOTH);
gluQuadricTexture(quadratic2, GL_TRUE);
if(!exec2) 
{
    glTranslatef(fX_cylpos+200,fY_cylpos,20);
    glRotatef(90, 0.0, 1, 0.0); //rotate object 90° on Y axis
    glRotatef(fangle_cyl, 1.0, 0.0, 0.0);  //0° = vertical / 90° = horizontal      
    exec2=true;
}
gluCylinder(quadratic2,fh_cyl,fh_cyl,fw_cyl,50,1000);
glPopMatrix();

这是用鼠标移动圆柱一点后的结果预览

是这个打字错误吗?

    gluQuadricTexture(quadratic2, GL_TRUE);
    gluCylinder(quadratic,fh_cyl,fh_cyl,fw_cyl,50,1000);

->

    gluQuadricTexture(quadratic2, GL_TRUE);
    gluCylinder(quadratic2,fh_cyl,fh_cyl,fw_cyl,50,1000);