Using GLU/GLUT Objects

Similar documents
Two possible ways to specify transformations. Each part of the object is transformed independently relative to the origin

Using GLU/GLUT Objects. GLU/GLUT Objects. glucylinder() glutwirecone() GLU/GLUT provides very simple object primitives

Transformations. Rotation and Scaling

Computer Graphics (CS 543) Lecture 6a: Hierarchical 3D Models. Prof Emmanuel Agu. Computer Science Dept. Worcester Polytechnic Institute (WPI)

Hierarchical Modeling

COMP 175 COMPUTER GRAPHICS. Lecture 07: Scene Graph. COMP 175: Computer Graphics March 10, Remco Chang 07 Scene Graph

GL_MODELVIEW transformation

3.2 Hierarchical Modeling

Hierarchical Modeling. University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell

CS4202: Test. 1. Write the letter corresponding to the library name next to the statement or statements that describe library.

Modeling Objects. Modeling. Symbol-Instance Table. Instance Transformation. Each appearance of the object in the model is an instance

Reading. Hierarchical Modeling. Symbols and instances. Required: Angel, sections , 9.8. Optional:

CIS 636 Interactive Computer Graphics CIS 736 Computer Graphics Spring 2011

Lecture 5: Viewing. CSE Computer Graphics (Fall 2010)

Modeling with Transformations

Graphics and Visualization

Hierarchical Modeling II. Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media Arts University of New Mexico

CS 428: Fall Introduction to. Transformations in OpenGL + hierarchical modeling. Andrew Nealen, Rutgers, /21/2009 1

Hierarchical Modelling

Chapter 3: Modeling Transformation

API for creating a display window and using keyboard/mouse interations. See RayWindow.cpp to see how these are used for Assignment3

Hierarchical Modeling and Scene Graphs

Introduction to 3D Graphics with OpenGL. Z-Buffer Hidden Surface Removal. Binghamton University. EngiNet. Thomas J. Watson

OpenGL Transformations

Transforms 1 Christian Miller CS Fall 2011

Hierarchical Modeling

Hierarchical Modeling and scene graphs

Lecture 08: Hierarchical Modeling with Scene Graphs

Hierarchical Modeling and Scene Graphs

OpenGL: Setup 3D World

Lecture 5b. Transformation

Computer Graphics Hands-on

Hierarchy I. Guoying Zhao 1 / 40

Hierarchical Modeling: Tree of Transformations, Display Lists and Functions, Matrix and Attribute Stacks,

Scene Graphs. CS4620/5620: Lecture 7. Announcements. HW 1 out. PA 1 will be out on Wed

Describe the Orthographic and Perspective projections. How do we combine together transform matrices?

Computer graphics MN1

Outline. Introduction Surface of Revolution Hierarchical Modeling Blinn-Phong Shader Custom Shader(s)

Questions HW1 Transform Q/A. Transform. Shaoting Zhang. May 11, 2008

CSC 470 Computer Graphics

Spring 2013, CS 112 Programming Assignment 2 Submission Due: April 26, 2013

Hierarchical Models. Roadmap. Importance of shadows. Importance of shadows. Importance of shadows. Importance of shadows

CS 4204 Computer Graphics

Computer Graphics. Prof. Feng Liu. Fall /21/2016

Transformations IV. Week 3, Wed Jan 20

Where We Are: Static Models

The Viewing Pipeline adaptation of Paul Bunn & Kerryn Hugo s notes

Hidden Surface Removal. 3D Graphics with OpenGL. Back-Face Culling

CS354 Computer Graphics Viewing and Modeling

Introduction to OpenGL Transformations, Viewing and Lighting. Ali Bigdelou

Graphics pipeline and transformations. Composition of transformations

TIEA311 Tietokonegrafiikan perusteet kevät 2018

Due: Thursday, April 28 th by the stroke of midnight! TA: Jeff Booth

Precept 2 Aleksey Boyko February 18, 2011

Cheating: In case of cheating, all parts involved (source(s) and receiver(s)) get zero.

Luiz Fernando Martha André Pereira

CSC Graphics Programming. Budditha Hettige Department of Statistics and Computer Science

Fall CSCI 420: Computer Graphics. 2.2 Transformations. Hao Li.

Graphical Objects and Scene Graphs

3D Graphics Pipeline II Clipping. Instructor Stephen J. Guy

HIERARCHICAL TRANSFORMATIONS A Practical Introduction

Affine Transformations in 3D

Due: Thursday, February 6 th, 11:59 pm TA: Mason Remy

Computer Graphics. Chapter 10 Three-Dimensional Viewing

Supplement to Lecture 11

Rendering Pipeline and Coordinates Transforms

Transformations. CSCI 420 Computer Graphics Lecture 4

11. Quadrics in OpenGL

CSE 690: GPGPU. Lecture 2: Understanding the Fabric - Intro to Graphics. Klaus Mueller Stony Brook University Computer Science Department

Surface Graphics. 200 polys 1,000 polys 15,000 polys. an empty foot. - a mesh of spline patches:

Computer Viewing Computer Graphics I, Fall 2008

6. Modelview Transformations

Viewing and Modeling

Maya Lesson 3 Temple Base & Columns

Fundamental Types of Viewing

12. Selection. - The objects selected are specified by hit records in the selection buffer. E.R. Bachmann & P.L. McDowell MV 4202 Page 1 of 13

lecture 9 Object hierarchies - call trees and GL_MODELVIEW stack - fractals - L systems

Computer Graphics. Transformations. CSC 470 Computer Graphics 1

Rendering Pipeline/ OpenGL

Transformation Pipeline

Introduction to OpenGL

Translation. 3D Transformations. Rotation about z axis. Scaling. CS 4620 Lecture 8. 3 Cornell CS4620 Fall 2009!Lecture 8

6.837 Computer Graphics Hierarchical Modeling Wojciech Matusik, MIT EECS Some slides from BarbCutler & Jaakko Lehtinen

Name: [20 points] Consider the following OpenGL commands:

OpenGL: Open Graphics Library. Introduction to OpenGL Part II. How do I render a geometric primitive? What is OpenGL

CS 465 Program 4: Modeller

CSCI E-74. Simulation and Gaming

COMP Computer Graphics and Image Processing. 5: Viewing 1: The camera. In part 1 of our study of Viewing, we ll look at ˆʹ U ˆ ʹ F ˆʹ S

OpenGL. Toolkits.

Computer Graphics. Chapter 7 2D Geometric Transformations

Computer Graphics Geometric Transformations

Modeling Transform. Chapter 4 Geometric Transformations. Overview. Instancing. Specify transformation for objects 李同益

Transformations IV. Week 3, Mon Jan 22

C OMPUTER G RAPHICS Thursday

Advanced Computer Graphics (CS & SE )

CS 591B Lecture 9: The OpenGL Rendering Pipeline

CHAPTER 1 Graphics Systems and Models 3

Fachhochschule Regensburg, Germany, February 15, 2017

Books, OpenGL, GLUT, GLUI, CUDA, OpenCL, OpenCV, PointClouds, and G3D

HIERARCHICAL TRANSFORMATIONS A Practical Introduction

Transcription:

Using GLU/GLUT Objects GLU/GLUT provides very simple object primitives glutwirecone glutwirecube glucylinder glutwireteapot

GLU/GLUT Objects Each glu/glut object has its default size, position, and orientation You need to perform modeling transformation to make it right for you glutwirecube(1.0) - wire means wire frame Put a 1x1x1 cube with its center at world (0,0,0) To create a 2 x 0.1 x 2 table top - need to call glscalef(2, 0.1, 2) before you call glutwirecube(1.0)

glucylinder() sphere, cylinder, disk, partial disk Three steps to create a cylinder 1. Create a GLU quadric object GLUquadricObj *p = glunewquadric(); 2. Set to wire frame mode gluquadricdrawstyle(glu LINE); 3. Derive a cylinder object from p glucylinder(p, base, top, height, slice, stacks) z y base top radius radius height Base num. of vertical lines num. of horizontal lines x The default position is also with base at z = 0 plane

glutwirecone() Use glutwirecone and glucylinder to make a lamp z y glutwirecone(base, height, slices, stacks) - A polygon approximation of a cone. Base x Default position: its base at Z = 0 plane base: the width of its base height: the height of the cone slices: the number of vertical lines used to make up the cone stace: the number of horizontal lines used to make up the cone

glutwireteapot() The famous Utah Teapot has become an unofficial computer graphics mascot glutwireteapot(0.5) - Create a teapot with size 0.5, and position its center at (0,0,0) Again, you need to apply transformations to position it at the right spot

Transformations Two ways to specify transformations (1) Each part of the object is transformed independently relative to the origin Not the OpenGL Way! z y Translate the base by (5,0,0); Translate the lower arm by (5,00); Translate the upper arm by (5,00); x

Relative Transformation A better (and easier) way: (2) Relative transformation: Specify the transformation for each object relative to its parent

Object Dependency A graphical scene often consists of many small objects The attributes of an object (positions, orientations) can depend on others A Robot Hammer! hammer upper arm lower arm base

Hierarchical Representation - Scene Graph We can describe the object dependency using a tree structure Root node Base Lower arm The position and orientation of an object can be affected by its parent, grand-parent, grand-grand-parent nodes Leaf node Upper arm Hammer This hierarchical representation is referred to as Scene Graph

Relative Transformation Relative transformation: Specify the transformation for each object relative to its parent Step 1: Translate base and its descendants by (5,0,0);

Relative Transformation (2) Step 2: Rotate the lower arm and all its descendants relative to its local y axis by -90 degree y y z z x x

Relative Transformation (3) Represent relative transformations using scene graph Base Translate (5,0,0) Lower arm Rotate (-90) about its local y Upper arm Hammer Apply all the way down Apply all the way down

Do it in OpenGL Translate base and all its descendants by (5,0,0) Rotate the lower arm and its descendants by -90 degree about the local y glmatrixmode(gl_modelview); glloadidentity(); Base Lower arm Upper arm Hammer // setup your camera gltranslatef(5,0,0); Draw_base(); glrotatef(-90, 0, 1, 0); Draw_lower _arm(); Draw_upper_arm(); Draw_hammer();

A more complicated example How about this model? left hammer Right hammer Scene Graph? base Lower arm Lower arm Upper arm Upper arm base Hammer (left hammer) Hammer (right hammer)

Do this Base and everything translate (5,0,0) Left hammer rotate 75 degree about the local y Right hammer rotate -75 degree about the local y

Depth-first traversal Program this transformation by depth-first traversal base Lower arm Lower arm Do Draw base transformation(s) Upper arm Upper arm Hammer Hammer (left hammer) (right hammer) Depth First Traversal Do transformation(s) Draw left arm Do transformation(s) Draw right arm What are they?

How about this? base Lower arm Upper arm Hammer (left hammer) Lower arm Upper arm Hammer (right hammer) Translate(5,0,0) Draw base Rotate(75, 0, 1, 0) Draw left hammer What s wrong?! Rotate(-75, 0, 1, 0) Draw right hammer

Something is wrong What s wrong? We want to transform the right hammer relative to the base, not to the left hammer How about this? Do Translate(5,0,0) Draw base Do Rotate(75, 0, 1, 0) Draw left hammer What s wrong?! We should undo the left hammer transformation before we transform the right hammer Need to undo this first Do Rotate(-75, 0, 1, 0) Draw right hammer

Undo the previous transformation(s) Need to save the modelview matrix right after we draw base Initial modelview M Translate(5,0,0) -> M = M x T Draw base Rotate(75, 0, 1, 0) Draw left hammer Rotate(-75, 0, 1, 0) Undo the previous transformation means we want to restore the Modelview Matrix M to what it was here i.e., save M right here And then restore the saved Modelview Matrix Draw right hammer

OpenGL Matrix Stack We can use OpenGL Matrix Stack to perform matrix save and restore Initial modelview M Do Draw base Do Translate(5,0,0) -> M = M x T Rotate(75, 0, 1, 0) * Store the current modelview matrix - Make a copy of the current matrix and push into OpenGL Matrix Stack: call glpushmatrix() - continue to modify the current matrix Draw left hammer Do Rotate(-75, 0, 1, 0) Draw right hammer * Restore the saved Matrix -Popthe top of the Matrix and copy it back to the current Modelview Matrix: Call glpopmatrix()

Push and Pop Matrix Stack A simple OpenGL routine: push Lower arm base pop Lower arm gltranslate(5,0,0) Draw_base(); glpushmatrix(); Upper arm Upper arm glrotate(75, 0,1,0); Draw_left_hammer(); Hammer Hammer (left hammer) (right hammer) Depth First Traversal glpopmatrix(); glrotate(-75, 0,1,0); Draw_right_hammer();

Push and Pop Matrix Stack Nested push and pop operations glmatrixmode(gl_modelview); glloadidentity(); // Transform using M1; // Transform using M2; glpushmatrix(); // Transform using M3 glpushmatrix();.. // Transform using M4 glpopmatrix(); // Transform using M5 glpopmatrix(); Modelview matrix (M) Stack M = I M = M1 M = M1 x M2 M1xM2 M = M1 x M2 x M3 M1xM2xM3 M1 x M2 M = M1 x M2 x M3 x M4 M = M1 x M2 x M3 M1 x M2 M = M1 x M2 x M3 x M5 M = M1 x M2