Programming with OpenGL Part 3: Three Dimensions

Similar documents
Programming with OpenGL Part 1: Background

Meshing and Geometry

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

Graphics Programming. 1. The Sierpinski Gasket. Chapter 2. Introduction:

Objectives. Programming with OpenGL Part 5: More GLSL. Program Object. Reading a Shader. Shader Reader. Linking Shaders with Application

UNIT 7 LIGHTING AND SHADING. 1. Explain phong lighting model. Indicate the advantages and disadvantages. (Jun2012) 10M

Graphics Programming. August 31, Programming of the Sierpinski gasket. Programming with OpenGL and C/C++

Lecture 3 Advanced Computer Graphics (CS & SE )

Lecture 3. Understanding of OPenGL programming

Programming with OpenGL Part 2: Complete Programs Computer Graphics I, Fall

Duc Nguyen CSE 420 Computer Graphics 10/10/2018 Homework 1

Basic Graphics Programming

Computer Graphics (Basic OpenGL)

Lectures OpenGL Introduction

COMPUTER GRAPHICS LAB # 3

Graphics Programming

GL_COLOR_BUFFER_BIT, GL_PROJECTION, GL_MODELVIEW

COS340A Assignment 1 I Pillemer Student# March 25 th 2007 p1/15

Announcements OpenGL. Computer Graphics. Autumn 2009 CS4815

Programming using OpenGL: A first Introduction

Introduction to Computer Graphics with OpenGL/GLUT

CS559: Computer Graphics. Lecture 12: OpenGL Li Zhang Spring 2008

Teacher Assistant : Tamir Grossinger Reception hours: by - Building 37 / office -102 Assignments: 4 programing using

Computer Graphics. Making Pictures. Computer Graphics CSC470 1

Drawing Primitives. OpenGL basics

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

C++ is Fun Part 13 at Turbine/Warner Bros.! Russell Hanson

2D Drawing Primitives

Introduction to OpenGL: Part 2

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

Announcements OpenGL. Computer Graphics. Spring CS4815

CS559: Computer Graphics. Lecture 12: OpenGL Transformation Li Zhang Spring 2008

Interaction Computer Graphics I Lecture 3

To Do. Computer Graphics (Fall 2008) Course Outline. Course Outline. Methodology for Lecture. Demo: Surreal (HW 3)


Bob s Concise Introduction to Doxygen

by modifying the glutinitwindowsize() function you can change the screen size to whatever you please.

Precept 2 Aleksey Boyko February 18, 2011

Interaction. CSCI 480 Computer Graphics Lecture 3

Computer Graphics and Visualization VTU QUESTION PAPER SOLUTION UNIT -1 INTRODUCTION

Graphics Hardware and OpenGL

RECITATION - 1. Ceng477 Fall

PART-I: Lab for MCS-051 (Advanced Internet Technologies)

Introduction to OpenGL Week 1

Objectives. Image Formation Revisited. Physical Approaches. The Programmer s Interface. Practical Approach. Introduction to OpenGL Week 1

Display Lists in OpenGL

Computer Graphics. OpenGL

Computer graphics MN1

// double buffering and RGB glutinitdisplaymode(glut_double GLUT_RGBA); // your own initializations

Basic Graphics Programming

Assignment 1. Simple Graphics program using OpenGL

1.2 Basic Graphics Programming

Cameras (and eye) Ideal Pinhole. Real Pinhole. Real + lens. Depth of field

SOURCES AND URLS BIBLIOGRAPHY AND REFERENCES

11/1/13. Basic Graphics Programming. Teaching Assistant. What is OpenGL. Course Producer. Where is OpenGL used. Graphics library (API)

C OMPUTER G RAPHICS Thursday

QUESTION 1 [10] 2 COS340-A October/November 2009

Using OpenGL with CUDA

Ulf Assarsson Department of Computer Engineering Chalmers University of Technology

Interaction. CSCI 420 Computer Graphics Lecture 3

CS 543 Lecture 1 (Part 3) Prof Emmanuel Agu. Computer Science Dept. Worcester Polytechnic Institute (WPI)

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

CMSC 425: Lecture 4 More about OpenGL and GLUT Tuesday, Feb 5, 2013

2/3/16. Interaction. Triangles (Clarification) Choice of Programming Language. Buffer Objects. The CPU-GPU bus. CSCI 420 Computer Graphics Lecture 3

6. Make use of glviewport() to display two sine curves on the same screen, one on the

Computer Graphics Course 2005

OpenGL/GLUT Intro. Week 1, Fri Jan 12

Comp 410/510 Computer Graphics Spring Programming with OpenGL Part 2: First Program

CS 4204 Computer Graphics

3D computer graphics: geometric modeling of objects in the computer and rendering them

Chapter 13 Selection and Feedback

Abel J. P. Gomes LAB. 1. INTRODUCTION TO OpenGL

Comp 410/510 Computer Graphics Spring Programming with OpenGL Part 4: Three Dimensions

Lecture 2 CISC440/640 Spring Department of Computer and Information Science

Programming with OpenGL Part 1: Background

Computer Graphics. Bing-Yu Chen National Taiwan University

Introduction to OpenGL

Announcement. Homework 1 has been posted in dropbox and course website. Due: 1:15 pm, Monday, September 12

COMP 371/4 Computer Graphics Week 1

Intro to OpenGL III. Don Fussell Computer Science Department The University of Texas at Austin

Computer Graphics Introduction to OpenGL

Computer graphics MN1

Introduction to OpenGL

1/12/11. Basic Graphics Programming. What is OpenGL. OpenGL is cross-platform. How does OpenGL work. How does OpenGL work (continued) The result

Fourier Series. Given a periodic function, x(t), (-T <t <T): + b n sin n t T. a n cos n t T. 2 a 0 + Z T. a n = 1 T. x(t) cos n t T. b n = 1 T.

ERKELEY DAVIS IRVINE LOS ANGELES RIVERSIDE SAN DIEGO SAN FRANCISCO EECS 104. Fundamentals of Computer Graphics. OpenGL

CS 432 Interactive Computer Graphics

Computer Graphics CS 543 Lecture 4 (Part 2) Building 3D Models (Part 2)

CS418 OpenGL & GLUT Programming Tutorial (I) Presented by : Wei-Wen Feng 1/30/2008

CS 4731 Lecture 3: Introduction to OpenGL and GLUT: Part II. Emmanuel Agu

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

Source code: #include <iostream>

OpenGL Introduction Computer Graphics and Visualization

Computer Graphics Primitive Attributes

Computer Graphics, Chapt 08

Order of Transformations

Input and Interaction. 1. Interaction. Chapter 3. Introduction: - We now turn to the development of interactive graphics programs.

2. OpenGL -I. 2.1 What is OpenGL? Things OpenGL can do: -23-

CSE4030 Introduction to Computer Graphics

1) Program to display a set of values {fij} as a rectangular mesh. #include<gl/glut.h> #define maxx 20. #define maxy 20. #define dx 15.

Transcription:

Programming with OpenGL Part 3: Three Dimensions Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media Arts University of New Mexico

Objectives Develop a more sophisticated threedimensional example - Sierpinski gasket: a fractal Introduce hidden-surface removal 2

Three-dimensional Applications In OpenGL, two-dimensional applications are a special case of three-dimensional graphics Going to 3D - Not much changes -Use glvertex3*( ) - Have to worry about the order in which polygons are drawn or use hidden-surface removal - Polygons should be simple, convex, flat 3

Sierpinski Gasket (2D) Start with a triangle Connect bisectors of sides and remove central triangle Repeat 4

Five subdivisions Example 5

The gasket as a fractal Consider the filled area (black) and the perimeter (the length of all the lines around the filled triangles) As we continue subdividing - the area goes to zero - but the perimeter goes to infinity This is not an ordinary geometric object - It is neither two- nor three-dimensional It is a fractal (fractional dimension) object 6

Gasket Program #include <GL/glut.h> /* a point data type typedef GLfloat point2[2]; /* initial triangle */ point2 v[]={{-1.0, -0.58}, {1.0, -0.58}, {0.0, 1.15}}; int n; /* number of recursive steps */ 7

Draw a triangle void triangle( point2 a, point2 b, point2 c) /* display one triangle */ { glbegin(gl_triangles); glvertex2fv(a); glvertex2fv(b); glvertex2fv(c); glend(); } 8

Triangle Subdivision void divide_triangle(point2 a, point2 b, point2 c, int m) { /* triangle subdivision using vertex numbers */ point2 v0, v1, v2; int j; if(m>0) { for(j=0; j<2; j++) v0[j]=(a[j]+b[j])/2; for(j=0; j<2; j++) v1[j]=(a[j]+c[j])/2; for(j=0; j<2; j++) v2[j]=(b[j]+c[j])/2; divide_triangle(a, v0, v1, m-1); divide_triangle(c, v1, v2, m-1); divide_triangle(b, v2, v0, m-1); } else(triangle(a,b,c)); /* draw triangle at end of recursion */ } 9

Display and Init Functions void display() { glclear(gl_color_buffer_bit); divide_triangle(v[0], v[1], v[2], n); glflush(); } void myinit() { glmatrixmode(gl_projection); glloadidentity(); gluortho2d(-2.0, 2.0, -2.0, 2.0); glmatrixmode(gl_modelview); glclearcolor (1.0, 1.0, 1.0,1.0) glcolor3f(0.0,0.0,0.0); } 10

main Function int main(int argc, char **argv) { n=4; glutinit(&argc, argv); glutinitdisplaymode(glut_single GLUT_RGB); glutinitwindowsize(500, 500); glutcreatewindow( 2D Gasket"); glutdisplayfunc(display); myinit(); glutmainloop(); } 11

Moving to 3D We can easily make the program threedimensional by using typedef Glfloat point3[3] glvertex3f glortho But that would not be very interesting Instead, we can start with a tetrahedron 12

3D Gasket We can subdivide each of the four faces Appears as if we remove a solid tetrahedron from the center leaving four smaller tetrahedtra 13

Example after 5 iterations 14

triangle code void triangle( point a, point b, point c) { glbegin(gl_polygon); glvertex3fv(a); glvertex3fv(b); glvertex3fv(c); glend(); } 15

subdivision code void divide_triangle(point a, point b, point c, int m) { point v1, v2, v3; int j; if(m>0) { for(j=0; j<3; j++) v1[j]=(a[j]+b[j])/2; for(j=0; j<3; j++) v2[j]=(a[j]+c[j])/2; for(j=0; j<3; j++) v3[j]=(b[j]+c[j])/2; divide_triangle(a, v1, v2, m-1); divide_triangle(c, v2, v3, m-1); divide_triangle(b, v3, v1, m-1); } else(triangle(a,b,c)); } 16

tetrahedron code void tetrahedron( int m) { glcolor3f(1.0,0.0,0.0); divide_triangle(v[0], v[1], v[2], m); glcolor3f(0.0,1.0,0.0); divide_triangle(v[3], v[2], v[1], m); glcolor3f(0.0,0.0,1.0); divide_triangle(v[0], v[3], v[1], m); glcolor3f(0.0,0.0,0.0); divide_triangle(v[0], v[2], v[3], m); } 17

Almost Correct Because the triangles are drawn in the order they are defined in the program, the front triangles are not always rendered in front of triangles behind them get this want this 18

Hidden-Surface Removal We want to see only those surfaces in front of other surfaces OpenGL uses a hidden-surface method called the z-buffer algorithm that saves depth information as objects are rendered so that only the front objects appear in the image 19

Using the z-buffer algorithm The algorithm uses an extra buffer, the z-buffer, to store depth information as geometry travels down the pipeline It must be - Requested in main.c glutinitdisplaymode (GLUT_SINGLE GLUT_RGB GLUT_DEPTH) - Enabled in init.c glenable(gl_depth_test) - Cleared in the display callback glclear(gl_color_buffer_bit GL_DEPTH_BUFFER_BIT) 20

Surface vs Volume Subdvision In our example, we divided the surface of each face We could also divide the volume using the same midpoints The midpoints define four smaller tetrahedrons, one for each vertex Keeping only these tetrahedrons removes a volume in the middle 21

Volume Subdivision 22