国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

OpenGL學習筆記4_2(透視相關)

2019-11-10 19:14:20
字體:
來源:轉載
供稿:網友

藍寶書 第四章

正交投影

在ChangeSize函數中使用glOrtho函數調整

glOrtho參考:點擊打開鏈接

正交投影ChangeSize代碼參考

void ChangeSize(GLsizei w, GLsizei h){	GLfloat nRange = 100.0f;	// PRevent a divide by zero  	if (h == 0)		h = 1;	// Set Viewport to window dimensions  	glViewport(0, 0, w, h);	// Reset projection matrix stack  	glMatrixMode(GL_PROJECTION);	glLoadIdentity();	// Establish clipping volume (left, right, bottom, top, near, far)  	if (w <= h)		glOrtho(-nRange, nRange, -nRange*h / w, nRange*h / w, -nRange, nRange);	else		glOrtho(-nRange*w / h, nRange*w / h, -nRange, nRange, -nRange, nRange);	// Reset Model view matrix stack  	glMatrixMode(GL_MODELVIEW);	glLoadIdentity();}

透視投影

在ChangeSize函數中使用gluPerspective函數調整

gluPerspective參考:點擊打開鏈接

透視投影ChangeSize代碼參考

void ChangeSize(GLsizei w, GLsizei h){	GLfloat faspect;	// Prevent a divide by zero	if (h == 0)		h = 1;	// Set viewport to window dimensions	glViewport(0, 0, w, h);	fAspect = (GLfloat)w / (GLfloat)h;	// Reset coordinate system	glMatrixMode(GL_PROJECTION);	glLoadIdentity();	// Produce the perspective projection	gluPerspective(60.0f, fAspect, 1.0, 400.0);	glMatrixMode(GL_MODELVIEW);	glLoadIdentity();}glOrtho函數和gluPerspective的作用是在整個世界中勾出一個視線可以達到的范圍

例4.3 太陽地球月亮模型

光源參考:點擊打開鏈接

#include <windows.h>  #include <math.h>  #include <GL/GL.h>  #include <GL/GLU.h>  #include <GL/glut.h>   void RenderScene(void){	static float fMoonRot = 0.0f;	static float fEarthRot = 0.0f;		glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);	glMatrixMode(GL_MODELVIEW);	glPushMatrix();	glTranslatef(0.0f, 0.0f, -300.0f);	//sun	glColor3ub(255, 255, 0);	glDisable(GL_LIGHTING);	glutSolidSphere(15.0f, 15, 15);	glEnable(GL_LIGHTING);	GLfloat lightPos[] = { 0.0f, 0.0f, 0.0f, 1.0f};	glLightfv(GL_LIGHT0, GL_POSITION, lightPos);	glRotatef(fEarthRot, 0.0f, 1.0f, 0.0f);	glColor3ub(0, 0, 255);	glTranslatef(105.0f, 0.0f, 0.0f);	glutSolidSphere(15.0f, 15, 15);	glColor3ub(200, 200, 200);	glRotatef(fMoonRot, 0.0f, 1.0f, 0.0f);	glTranslatef(30.0f, 0.0f, 0.0f);	fMoonRot += 15.0f;	if (fMoonRot > 360.0f)		fMoonRot = 0.0f;	glutSolidSphere(6.0f, 15, 15);	glPopMatrix(); // Modelview matrix	fEarthRot += 5.0f;	if (fEarthRot > 360.0f)		fEarthRot = 0.0f;	// Show the image	glutSwapBuffers();}void SetupRC(){	glEnable(GL_DEPTH_TEST);	glFrontFace(GL_CCW);	glEnable(GL_CULL_FACE);	glEnable(GL_LIGHTING);	glEnable(GL_LIGHT0);	glEnable(GL_COLOR_MATERIAL);	// Black background	glClearColor(0.0f, 0.0f, 0.0f, 1.0f);}void timerProc(int id){	RenderScene();	glutTimerFunc(100, timerProc, 1);}void ChangeSize(GLsizei w, GLsizei h){	GLfloat fAspect;	// Prevent a divide by zero	if (h == 0)		h = 1;	// Set viewport to window dimensions	glViewport(0, 0, w, h);	fAspect = (GLfloat)w / (GLfloat)h;	// Reset coordinate system	glMatrixMode(GL_PROJECTION);	glLoadIdentity();	// Produce the perspective projection	gluPerspective(45.0f, fAspect, 1.0, 425.0);	glMatrixMode(GL_MODELVIEW);	glLoadIdentity();}int main(int argc, char* argv[]){	glutInit(&argc, argv);	glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA);	glutInitWindowSize(800, 600);	glutCreateWindow("Earth & Moon & Sun System");	glutDisplayFunc(RenderScene);//顯示回調函數  	glutReshapeFunc(ChangeSize);//窗口大小變形回調函數  	glutTimerFunc(100, timerProc, 1);	SetupRC();	glutMainLoop();	return 0;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 襄垣县| 庄浪县| 云林县| 诸城市| 沅江市| 射洪县| 井陉县| 沅陵县| 和田县| 舒兰市| 永靖县| 南郑县| 海丰县| 南涧| 曲靖市| 韶山市| 湾仔区| 沈丘县| 洪泽县| 荣昌县| 大冶市| 湘潭市| 湘潭县| 永康市| 呼伦贝尔市| 来宾市| 湘阴县| 濮阳市| 兴文县| 翁牛特旗| 黄骅市| 京山县| 临城县| 海伦市| 调兵山市| 江阴市| 永济市| 揭阳市| 苍梧县| 峨山| 大丰市|