Week 03
先開啟 Veyon 系統 來點名 // 服務 - 啟動服務
window
data
glut.32
將Glut.32 移到window裡面
開啟 shapes
更改 點、線、面、顏色 的數值
動手做出第一個"茶壺"實作
依照上個禮拜回家功課 開啟Glut 專案
要記得複製檔案
檔名改成 libglut32 並複製檔案位子
開啟檔案之後將程式碼全部刪除並且更改為下列
程式碼:
#include<GL/glut.h>
void display()
{
glutSolidTeapot(0.3);
glColor3f(100,0,0); //茶壺是紅色
glColor3f(100,0,0); //茶壺是紅色
glutSwapBuffers();
}
int main (int argc, char**argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE|GLUT_DEPTH);
glutCreateWindow("Shu的視窗");
glutDisplayFunc(display);
glutMainLoop();
}
沒有留言:
張貼留言