2023年3月2日 星期四

3binggreen

 week03

https://jsyeh.org/3dcg10 下載windows.zip and data.zip

   

執行
開新的專案

#include <GL/glut.h>
void display()
{
    glutSolidTeapot(0.3);
    glutSwapBuffers();
}
int main(int argc, char *argv[])
{
    glutInit(&argc, argv);

    glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);

    glutCreateWindow("week03");
    glutDisplayFunc(display);

    glutMainLoop();
}



<script src="https://gist.github.com/san0di804/e6d2ff537d17878fcdd7477294a68333.js"></script>




新增三行 讓茶壺移動
用滑鼠移動茶壺


再將座標貼上






沒有留言:

張貼留言