计算机图形学computergraph课件_第1页
计算机图形学computergraph课件_第2页
计算机图形学computergraph课件_第3页
计算机图形学computergraph课件_第4页
计算机图形学computergraph课件_第5页
已阅读5页,还剩55页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

PPTglMatrixMode(GL_PROJECTION);,33,CurrentTransformationMatrix(CTM),Conceptuallythereisa4x4homogeneouscoordinatematrix,thecurrenttransformationmatrix(CTM)thatispartofthestateandisappliedtoallverticesthatpassdownthepipelineTheCTMisdefinedintheuserprogramandloadedintoatransformationunit,CTM,vertices,vertices,p,p=Cp,C,34,CTMoperations,TheCTMcanbealteredeitherbyloadinganewCTMorbypostmutiplication,Loadanidentitymatrix:CILoadanarbitrarymatrix:CMLoadatranslationmatrix:CTLoadarotationmatrix:CRLoadascalingmatrix:CSPostmultiplybyanarbitrarymatrix:CCMPostmultiplybyatranslationmatrix:CCTPostmultiplybyarotationmatrix:CCRPostmultiplybyascalingmatrix:CCS,35,RotationaboutaFixedPoint,Startwithidentitymatrix:CIMovefixedpointtoorigin:CCTRotate:CCRMovefixedpointback:CCT-1Result:C=TRT1whichisbackwards.Thisresultisaconsequenceofdoingpostmultiplications.Letstryagain.,36,ReversingtheOrder,WewantC=T1RTsowemustdotheoperationsinthefollowingorderCICCT-1CCRCCTEachoperationcorrespondstoonefunctioncallintheprogram.Notethatthelastoperationspecifiedisthefirstexecutedintheprogram,37,CTMinOpenGL,OpenGLhasamodel-viewandaprojectionmatrixinthepipelinewhichareconcatenatedtogethertoformtheCTMCanmanipulateeachbyfirstsettingthecorrectmatrixmode,38,Rotation,Translation,Scaling,glRotatef(theta,vx,vy,vz),glTranslatef(dx,dy,dz),glScalef(sx,sy,sz),glLoadIdentity(),Loadanidentitymatrix:,Multiplyonright:,thetaindegrees,(vx,vy,vz)defineaxisofrotation,Eachhasafloat(f)anddouble(d)format(glScaled),39,Example,Rotationaboutzaxisby30degreeswithafixedpointof(1.0,2.0,3.0)RememberthatlastmatrixspecifiedintheprogramisthefirstappliedDemo,glMatrixMode(GL_MODELVIEW);glLoadIdentity();glTranslatef(1.0,2.0,3.0);glRotatef(30.0,0.0,0.0,1.0);glTranslatef(-1.0,-2.0,-3.0);,40,ArbitraryMatrices,CanloadandmultiplybymatricesdefinedintheapplicationprogramThematrixmisaonedimensionarrayof16elementswhicharethecomponentsofthedesired4x4matrixstoredbycolumnsInglMultMatrixf,mmultipliestheexistingmatrixontheright,glLoadMatrixf(m)glMultMatrixf(m),Matrixmultiply,/沿Y轴向上平移10个单位glTranslatef(0,10,0);/画第一个球体DrawSphere(5);/沿X轴向左平移10个单位glTranslatef(10,0,0);/画第二个球体DrawSphere(5);,41,procedureRenderScene();beginglMatrixMode(GL_MODELVIEW);/沿Y轴向上平移10个单位glTranslatef(0,10,0);/画第一个球体DrawSphere(5);/加载单位矩阵glLoadIdentity();/沿X轴向上平移10个单位glTranslatef(10,0,0);/画第二个球体DrawSphere(5);end;,42,MatrixStacks,InmanysituationswewanttosavetransformationmatricesforuselaterTraversinghierarchicaldatastructuresAvoidingstatechangeswhenexecutingdisplaylistsOpenGLmaintainsstacksforeachtypeofmatrixAccesspresenttype(assetbyglMatrixMode)by,glPushMatrix()glPopMatrix(),GL_PROJECTION,GL_MODEVIEW,MatrixStacks,procedureRenderScene();beginglMatrixMode(GL_MODELVIEW);/pushmatrixstackglPushMatrix;/translate10alongYaxisglTranslatef(0,10,0);/drawthefirstsphereDrawSphere(5);/comebacktothelastsavedstateglPopMatrix;/translate10alongXaxisglTranslatef(10,0,0);/drawthesecondsphereDrawSphere(5);end;,43,44,ReadingBackMatrices,Canalsoaccessmatrices(andotherpartsofthestate)byqueryfunctionsFormatrices,weuseas,glGetIntegervglGetFloatvglGetBooleanvglGetDoublevglIsEnabled,floatm16;glGetFloatv(GL_MODELVIEW,m);,45,UsingTransformations,Example:useidlefunctiontorotateacubeandmousefunctiontochangedirectionofrotationStartwithaprogramthatdrawsacube(colorcube.c)inastandardwayCenteredatoriginSidesalignedwithaxesWilldiscussmodelinginnextlecture,46,main.c,voidmain(intargc,char*argv)glutInit(,47,IdleandMousecallbacks,voidspinCube()thetaaxis+=2.0;if(thetaaxis360.0)thetaaxis-=360.0;glutPostRedisplay();,voidmouse(intbtn,intstate,intx,inty)char*sAxis=X-axis,Y-axis,Z-axis;/*mousecallback,selectsanaxisaboutwhichtorotate*/if(btn=GLUT_LEFT_BUTTON,48,Displaycallback,voiddisplay()glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);glLoadIdentity();glRotatef(theta0,1.0,0.0,0.0);glRotatef(theta1,0.0,1.0,0.0);glRotatef(theta2,0.0,0.0,1.0);colorcube();glutSwapBuffers();,Notethatbecauseoffixedfromofcallbacks,variablessuchasthetaandaxismustbedefinedasglobalsDemo,PolygonalMesh,49,Polygonalmesh,50,Object,Pointcloud,Surfacereconstruction,Polygonalmesh,PhDthesisofHuguesHoppe1994,Meshsmoothing,Polygonalmesh,Non-iterative,featurepreservingmeshsmoothingACMTransactionsonGraphics,2003,Meshsimplification,Polygonalmesh,CGAL,manual,Parameterization,Polygonalmesh,Polygonalmesh,Meshmorphing,Polygonalmesh,MeanValueCoordinatesforC

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论