今日課程內容:
1.使用老師提供的網站(http://www.cmlab.csie.ntu.edu.tw/~jsyeh/3dcg10/)
1.先下載win32, data, glut32.dll,source 2.將win32, data解壓縮後將所有資料放入windows資料夾
2.開啟"Transformation.exe"
3.程式的順序不同,會影響物體的狀態
自轉
glTranslatef(...)
glRotatef(...)
...
公轉
glRotatef(...)
glTranslatef(...)
...
2.新增一個可旋轉的錐體在茶壺上
1.先開起之前的茶壺
2.更改程式碼
#include <GL/glut.h>
float angle=0;
void display()
{
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
glPushMatrix();//備份矩陣,保護程式
glTranslatef(0 ,0.5, 0);
glutWireTeapot(0.3);
glPopMatrix();//還原矩陣
glPushMatrix();
glTranslatef(0.51,0.63,0);
glRotatef(angle,0,0,1);
glTranslatef(0.6,0,0);
glRotatef(-90,0,1,0);
glutWireCone(0.1,0.6,10,10);
glPopMatrix();
glutSwapBuffers();
}
void motion(int x,int y)
{
angle=x;
display();
}
int main(int argc,char ** argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_DOUBLE|GLUT_DEPTH);
glutCreateWindow("隱睪盛");
glutDisplayFunc(display);
glutMotionFunc(motion);
glutMainLoop();
}
沒有留言:
張貼留言