2021年3月22日 星期一

week05

 程式碼由下開始讀

自轉 先rotate再translate

會繞著車子的中心做旋轉

藍色車子、高矮胖瘦、自轉中的、把以下整個移到右邊

公轉 先translate再rotate

會繞著畫面正中心做旋轉

藍色車子、高矮胖瘦、移到右邊、在畫面中心轉動

Swap translate/rotate會改變旋轉時繞的軸心




#include <GL/glut.h>
#include <stdio.h>
float vx[2000],vy[2000];//準備很多頂點 畫圖用的
int N=0;//N個頂點
void display(){
    glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
    glBegin(GL_LINE_LOOP);
    for(int i=0;i<N;i++){
        glVertex2f(vx[i],vy[i]);
    }
    glEnd();
    glutSwapBuffers();
}
void mouse_event(int button,int state,int x,int y){
}
void motion(int x,int y){
    printf("%d %d\n",x,y);//紀錄頂點
    vx[N]=(x-150)/150.0;
    vy[N]=-(y-150)/150.0;
    N++;//做完N++後會去做display
    display();
}
int main(int argc,char**argv){
    glutInit(&argc,argv);
    glutInitDisplayMode(GLUT_DOUBLE|GLUT_DEPTH);
    glutCreateWindow("08160723week05");
    glutDisplayFunc(display);//按下去彈起來
    glutMotionFunc(motion);//mouse motion拖曳or->在畫
    glutMainLoop();
}

沒有留言:

張貼留言

Week18期末作業(橘貓的跳舞熊熊)

 期末作業(橘貓的跳舞熊熊) 影片: https://youtu.be/R89tptMaQZw 程式碼: #include <opencv/highgui.h> #include <opencv/cv.h> #include <GL/glut.h...