1 / 9

OpenGL, OpenSceneGraph, Maya

OpenGL, OpenSceneGraph, Maya. Erik Brisson ebrisson@bu.edu. Using graphics tools. OpenGL Program from scratch Access to all graphics card features OpenSceneGraph Program using scene graph paradigm Lots of utility functions Autodesk Maya Powerful modeling and animation package

ash
Download Presentation

OpenGL, OpenSceneGraph, Maya

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. OpenGL, OpenSceneGraph, Maya Erik Brisson ebrisson@bu.edu SCV Visualization Workshop – Fall 2008

  2. Using graphics tools SCV Visualization Workshop – Fall 2008 • OpenGL • Program from scratch • Access to all graphics card features • OpenSceneGraph • Program using scene graph paradigm • Lots of utility functions • Autodesk Maya • Powerful modeling and animation package • Highly interactive • Beautiful rendering

  3. OpenGL – primitives SCV Visualization Workshop – Fall 2008

  4. OpenGL – basic paradigm (cube.c) SCV Visualization Workshop – Fall 2008 for (i = 0; i < 6; i++) { glBegin(GL_QUADS); glNormal3fv(&n[i][0]); glVertex3fv(&v[faces[i][0]][0]); glVertex3fv(&v[faces[i][1]][0]); glVertex3fv(&v[faces[i][2]][0]); glVertex3fv(&v[faces[i][3]][0]); glEnd(); }

  5. OpenGL: simple_xyzc.c output SCV Visualization Workshop – Fall 2008

  6. OpenSceneGraph SCV Visualization Workshop – Fall 2008 • Open source • OpenGL based • Similar to SGI Performer • Many utility functions • Notably, 3-D file readers

  7. OpenSceneGraph demo SCV Visualization Workshop – Fall 2008

  8. Maya demo SCV Visualization Workshop – Fall 2008

  9. Image credits SCV Visualization Workshop – Fall 2008 • OpenGL geometric data structures • The OpenGL Programming Guide (“The Red Book”) Addison-Wesley • Scene Graph • www.opensg.org

More Related