【问题标题】:openGL rotating with Lighting problem带有照明问题的openGL旋转
【发布时间】:2010-07-22 07:08:34
【问题描述】:

我想在我的世界里画汽车。 但是当我的车旋转时,我的照明有问题,当汽车旋转时,灯光位置似乎发生了变化; 但是当我用 glut 函数绘制简单的立方体时,它可以正常工作。

void mydisplay(){

glLoadIdentity()
glDisable(GL_LIGHT0);
glColorMaterial ( GL_FRONT_AND_BACK, GL_DIFFUSE) ;
glColor3f(1.0,1.0,1.0);
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
p2[0]=50.0;
p2[1]=3.0;
p2[2]=0.0;
glLightfv(GL_LIGHT0,GL_POSITION,p2);
glEnable(GL_LIGHT0);
gluLookAt(50.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0);
glPushMatrix();
glRotatef(tet,0.0,1.0,0.0);
glutSolidCube(20);
glPopMatrix();
tet+=3.141592653/4;
glutSwapBuffers();

}

当 glutSolidCube(20);更改为我的绘图代码,它的工作方式很糟糕 我的代码:

无效绘图(){

glEnableClientState(GL_VERTEX_ARRAY);
GLfloat CubeVertex[]={  -20.0,0.0,10.0,//\/\/\/\/\/\\\///\/\/\/\/\/\/\/\/\/\/\/\/\/\/
                -20.0,0.0,-10.0,
                -20.0,3.0,-10.0,
                -20.0,3.0,10.0,    ///BIG   CUBE
            20.0,0.0,10.0,
            20.0,0.0,-10.0,
            20.0,3.0,-10.0,
            20.0,3.0,10.0,////////\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
            -10.0,3.0,10.0,
            -10.0,3.0,-10.0,
            -10.0,5.0,-10.0,
            -10.0,5.0,10.0,     //SMALL  CUBE
            10.0,3.0,10.0, 
            10.0,3.0,-10.0,
            10.0,5.0,-10.0,
            10.0,5.0,10.0,//\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\//
            -100.0,-2.4,100.0,
            -100.0,-2.4,-100.0,      //FLOOR
            100.0,-2.4,100.0,
            100.0,-2.4,-100.0
            };//\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\\/\//
GLubyte big_back[]={0,3,2,1};
GLubyte big_front[]={4,5,6,7};
GLubyte big_left[]={4,0,3,7};
GLubyte big_right[]={1,2,6,5};
GLubyte big_up[]={2,3,7,6};
GLubyte big_down[]={0,1,5,4};
GLubyte small_back[]={9,10,11,8};
GLubyte small_front[]={12,13,14,15};
GLubyte small_left[]={8,11,15,12};
GLubyte small_right[]={9,10,14,13};
GLubyte small_up[]={10,11,15,14};
GLubyte floor[]={16,17,19,18};
GLsizei count[]={4,4,4,4,4,4,4,4,4,4,4,4};
GLvoid* indices[12]={big_back,big_front,big_left,big_right,big_up,big_down,small_back,small_front,small_left,small_right,small_up,floor};
glVertexPointer(3,GL_FLOAT,0,CubeVertex);
for(int i=0;i<12;i++){//////////////////glMultiDrawElement////////////////
if(count[i]>0)
    glDrawElements(GL_QUADS,count[i],GL_UNSIGNED_BYTE,indices[i]);
}//////////////////////////////glMultiDrawElements//////////////////////

}

谢谢。

【问题讨论】:

  • 我说我的代码可以在 glutSolidCube(20) 上正常工作,但是 glDrawElements 有问题。为什么?谢谢。

标签: opengl glut lighting rotation


【解决方案1】:

您可以在这里找到答案:http://www.opengl.org/resources/faq/technical/lights.htm 部分:18.050 如何让我的灯移动或不移动并控制灯的位置?

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2022-01-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-09-15
    相关资源
    最近更新 更多