2016年3月1日 星期二

Week02 劉威辰

作業 01

step 1 : 從網址下載: sorce , date , win32 ,glut32.dll ( jsyeh.org/3dcg10 )
調整顏色 Color3f(1,0,0)//(R,G,B)

作業02 and 03

#include<GL/glut.h>

void display()
{
    glColor3f(1,0,0);   //茶壺顏色
    glutSolidTeapot(0.3); //茶壺
    glutSwapBuffers();
    glClearColor(1,1,0,0);   //背景顏色
    glClear(GL_COLOR_BUFFER_BIT);   /清背景
}

int main(int argc, char **argv)
{
    glutInit(&argc,argv);
    glutInitDisplayMode(GLUT_DOUBLE|GLUT_DEPTH);
    glutCreateWindow("hello");
    
    glutDisplayFunc(display);
    
    glutMainLoop();
}


沒有留言:

張貼留言