2019年2月23日 星期六

棗酒母湯

搜尋:http://www.cmlab.csie.ntu.edu.tw/~jsyeh/3dcg10/
並下載 [data] [win32] [glut32.dll]





解壓縮windows.zip檔
複製glut32.dll檔案貼到windows檔案夾中
打開data.zip檔案,打開後把檔案夾拖到windows檔案夾中



打開Shapes.exe



color調顏色
vertex調頂點位置



把GLUT範例刪除
改成以下程式碼↓↓↓

#include<GL/glut.h>
void display()
{
    glutSolidTeapot(0.3);
    glutSwapBuffers();
}
int main(int argc,char ** argv)
{
    glutInit(&argc,argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH);
    glutCreateWindow("Week02 GLUT喔");
    glutDisplayFunc(display);
    glutMainLoop();
}



會跑出以下↓↓↓



增加顏色,加入以下程式碼↓↓↓

glBegin(GL_POLYGON);
        glColor3f(1,0,0);
        glVertex2f(1,1);
        glColor3f(0,1,0);
        glVertex2f(1,-1);
        glColor3f(0,0,1);
        glVertex2f(-1,-1);
    glEnd();
    glColor3f(1,1,0);



會跑出以下↓↓↓




沒有留言:

張貼留言