2008年7月2日 星期三

在Ubuntu上安裝openGL環境

一開始先裝基本函式庫
sudo apt-get install build-essential
接著安裝openGL Library
sudo apt-get install libgl1-mesa-dev
再安裝openGL Utility
sudo apt-get install libglut-dev

下面是範例測試程式

#include

void init();
void display();

int main(int argc, char* argv[])
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE);
glutInitWindowPosition(0, 0);
glutInitWindowSize(300, 300);

glutCreateWindow("OpenGL 3D View");

init();
glutDisplayFunc(display);

glutMainLoop();
return 0;
}

void init()
{
glClearColor(0.0, 0.0, 0.0, 0.0);
glMatrixMode(GL_PROJECTION);
glOrtho(-5, 5, -5, 5, 5, 15);
glMatrixMode(GL_MODELVIEW);
gluLookAt(0, 0, 10, 0, 0, 0, 0, 1, 0);
}

void display()
{
glClear(GL_COLOR_BUFFER_BIT);

glColor3f(1.0, 0, 0);
glutWireTeapot(3);

glFlush();
}

編譯指令
gcc example.c -o example.out -lGL -lGLU -lglut
測試成功會有茶壺



沒有留言: