2019年5月31日 星期五

yusyuan👀 -Week15

| Week 15 |
§ 攝影機、運鏡 、投影、矩陣§

----------------------------------------------------------------------------------------------------------------


●01

http://www.cmlab.csie.ntu.edu.tw/~jsyeh/3dcg10/
。下載[data][win32]gult32.dll                                               
windows.zip解壓縮到windows資料夾裡面
把data資料夾拉到windows資料夾裡面
。複製glut32.dll到windows資料夾裡面
打開打開Projection.exe   












●02
http://www.cmlab.csie.ntu.edu.tw/~jsyeh/3dcg10/   


下載 soure 

glm.c、glm.h、projection.c到windows資料夾裡
 glm.c改檔名 glm.cpp





●03  
開啟GLUT



🔺GLUT前置作業                                                              
。打開 codeblocks Files> New>project>GLUT                
。到google搜尋 freegult windows
   下載  Download freeglut 3.0.0 for MinGW   
。解壓縮 freeglut打開 lib 找到 freeglut.a 並複製         
 freeglut.a 改為 libglut32.a                                   
複製 freeglut連接位置                                                   
。找到 程式碼 main.c 並打開  執行完成!   



◎程式碼  


#include <GL/glut.h>
#include "glm.h" ///for glmReadOBJ(), glmDraw(), glmUnitized()....
GLMmodel * pmodel=NULL;///NOW
void drawmodel(void)
{
    if (!pmodel) {
pmodel = glmReadOBJ("data/al.obj");
if (!pmodel) exit(0);
glmUnitize(pmodel);
glmFacetNormals(pmodel);
glmVertexNormals(pmodel, 90.0);
    }
    glmDraw(pmodel, GLM_SMOOTH | GLM_MATERIAL);
}
void display(void)
{
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    drawmodel();
    glutSwapBuffers();
}
#include <math.h>
float eyeX=1, eyeY=0, eyeZ=0;
void timer(int t)///NOW3
{
    glutTimerFunc(33, timer, t+1);///NOW3
    float angle=t/180.0*3.1415926;///NOW3 算出一個角度
    eyeX=cos(angle); eyeZ=sin(angle);///NOW3

    glMatrixMode(GL_PROJECTION);///NOW4
    glLoadIdentity();///NOW4
    gluPerspective(60, 1, 0.001, 1000);///NOW5
///glOrtho(-1,+1, -1,+1, -10,+10);///NOW4 可以看到範圍比較大的投影法

    glMatrixMode(GL_MODELVIEW);///NOW3
    glLoadIdentity();///NOW3
    gluLookAt(eyeX, eyeY, eyeZ, ///NOW3 LookAt的 eye
              0.0, 0.6, 0.0, ///NOW3 LookAt的 center
              0, 1, 0);///NOW3 LookAt的 up

    glutPostRedisplay();///NOW3 Re-display
}
int main(int argc, char**argv)
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH);
    glutInitWindowSize(500,500);
    glutCreateWindow("week15");

    glutDisplayFunc(display);
    glutTimerFunc(33, timer, 0);///NOW3

    GLfloat light_pos[] = { 0.0, 0.0, 1.0, 0.0 };///NOW2 打光的位置
    glEnable(GL_DEPTH_TEST);///NOW2 有立體的功能
    glEnable(GL_LIGHT0);    ///NOW2 打光後變立體的彩色的
    glEnable(GL_LIGHTING);  ///NOW2 打光後變立體的彩色的
    glLightfv(GL_LIGHT0, GL_POSITION, light_pos);///NOW2 打光的位置

    glutMainLoop();
}


沒有留言:

張貼留言