SlideShare une entreprise Scribd logo
1  sur  59
Chapter 2:
Graphics Programming
www.themegallery.com
Instructor: Shih-Shinh Huang
1
Outlines
Introduction
OpenGL API
Primitives and Attributes
OpenGL Viewing
Sierpinski Gasket Example
Implicit Functions Plotting
2
Introduction
Graphics System
 The basic model of a graphics package is a
black box described by its input and output.
 Input Interface
• Function Calls from User Program
• Measurements from Input Devices
 Output Interface
• Graphics to Output Device.
3
Introduction
Graphics System
 API Categories
• Primitive Functions
• Attribute Functions
• Viewing Functions
• Transformation Functions
• Input Functions
• Control Functions
• Query Functions
4
Introduction
Coordinate System
 It is difficult to specify the vertices in units of
the physical device.
 Device-independent graphics makes users
easy to define their own coordinate system
• World Coordinate System
• Application Coordinate System.
Rendering Process
5
Introduction
Running OpenGL on Windows VC++
 Step 1: Download the GLUT for windows from website.
 Step 2: Put the following files in the locations
• glut32.dll -> C:windowssystem32
• glut32.lib -> <VC Install Dir>lib
• glut.h -> <VC Install Dir>include
 Step 3: Create a VC++ Windows Console Project
 Step 4: Add a C++ File to the created project
 Step 5: Add opengl32.lib glu32.lib glut32.lib to
• Project->Properties->Configuration Properties->Linker->Input-
>Additional Dependencies
6
OpenGL API
What is OpenGL (Open Graphics Library)
 It is a layer between programmer and
graphics hardware.
 It is designed as hardware-independent
interface to be implemented on many different
hardware platforms
 This interface consists of over 700 distinct
commands.
• Software library
• Several hundred procedures and functions
7
OpenGL API
What is OpenGL
Applicaton
Graphics Package
OpenGL Application Programming Interface
Hardware and software
Output Device Input Device
Applicaton
Input Device
8
OpenGL API
Library Organization
 OpenGL (GL)
• Core Library
• OpenGL on Windows.
 OpenGL Utility Library (GLU)
• It uses only GL functions to create common objects.
• It is available in all OpenGL implementations.
 OpenGL Utility Toolkit (GLUT)
• It provides the minimum functionalities expected for
interacting with modern windowing systems.
9
OpenGL API
Library Organization
GLX for X window systems
WGL for Windows
AGL for Macintosh
10
OpenGL API
Program Structure
 Step 1: Initialize the interaction between windows
and OpenGL.
 Step 2: Specify the window properties and further
create window.
 Step 3: Set the callback functions
 Step 4: Initialize the program attributes
 Step 5: Start to run the program
11
OpenGL API
Program Framework
#include <GL/glut.h>
int main(int argc, char** argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(500,500);
glutInitWindowPosition(0,0);
glutCreateWindow("simple");
glutDisplayFunc(myDisplay);
myInit();
glutMainLoop();
}
includes gl.h
define window properties
set OpenGL state
enter event loop
display callback
interaction initialization
12
OpenGL API
Program Framework: Window Management
 glutInit():initializes GLUT and should be
called before any other GLUT routine.
 glutInitDisplayMode():specifies the
color model (RGB or color-index color model)
 glutInitWindowSize(): specifies the size,
in pixels, of your window.
 glutInitWindowPosition():specifies the
screen location for the upper-left corner
 glutCreateWindow():creates a window
with an OpenGL context.
13
OpenGL API
Program Framework
void myDisplay(){
/* clear the display */
glClear(GL_COLOR_BUFFER_BIT);
glFlush();
}/* End of GasketDisplay */
void myInit(){
/* set colors */
glClearColor(1.0, 1.0, 1.0, 0.0);
}/* End of myInit */
14
OpenGL API
Program Framework: Color Manipulation
 glClearColor():establishes what color the
window will be cleared to.
 glClear():actually clears the window.
 glColor3f():establishes what color to use
for drawing objects.
 glFlush():ensures that the drawing
command are actually executed.
15
Remark: OpenGL is a state machine. You put it into various
states or modes that remain in effect until you change them
Primitives and Attributes
Primitive Description
 An API should contain a small set of primitives
that the hardware can be expected to support.
 The primitives should be orthogonal.
OpenGL Primitive
 Basic Library: has a small set of primitives
 GLU Library: contains a rich set of objects
derived from basic library.
16
Primitives and Attributes
Primitive Classes
 Geometric Primitives
• They are subject to series of geometric operations.
• They include points, line segments, curves, etc.
 Raster Primitives
• They are lack of geometric properties
• They may be array of pixels.
17
Primitives and Attributes
Program Form of Primitives
 The basic ones are specified by a set of vertices.
 The type specifies how OpenGL assembles the
vertices.
glBegin(type);
glVertex*(…);
glVertex*(…);
.
.
glVertex*(…);
glEnd();
18
Primitives and Attributes
Program Form of Primitives
 Vertex Function: glVertex*()
• * : can be as the form [nt | ntv]
• n : the number of dimensions (2, 3, 4)
• t : data type (i: integer, f: float, and d: double)
• v : the variables is a pointer.
glVertex2i (GLint x, GLint y);
glVertex3f(GLfloat x, GLfloat y, GLfloat z);
glVertex2fv(p); // int p[2] = {1.0, 1.0}
19
Primitives and Attributes
Points and Line Segment
 Point: GL_POINTS
 Line Segments: GL_LINES
 Polygons:
• GL_LINE_STRIP
• GL_LINE_LOOP
20
Primitives and Attributes
Polygon Definition
 It is described by a line loop
 It has a well-defined interior.
Polygon in Computer Graphics
 The polygon can be displayed rapidly.
 It can be used to approximate arbitrary surfaces.
21
Primitives and Attributes
Polygon Properties
 Simple: no two edges cross each other
 Convex: all points on the line segment
between two points inside the object.
 Flat: any three no-collinear determines a
plane where that triangle lies.
Simple Non-Simple Convexity
22
Primitives and Attributes
Polygon Primitives
 Polygons: GL_POLYGON
 Triangles: GL_TRIANGLES
 Quadrilaterals: GL_QUADS
 Stripes: GL_TRIANGLE_STRIP
 Fans: GL_TRIANGLE_FAN
23
Primitives and Attributes
Attributes
 An attribute is any property that determines
how a geometric primitive is to be rendered.
 Each geometric primitive has a set of attributes.
• Point: Color
• Line Segments: Color, Thickness, and Pattern
• Polygon: Pattern
24
Primitives and Attributes
Example: Sphere Approximation
 A set of polygons are used to construct an
approximation to a sphere.
• Longitude
• Latitude
25
Primitives and Attributes
Example: Sphere Approximation
 We use quad strips primitive to approximate
the sphere.



sin),(
coscos),(
cossin),(



z
y
x
26
Primitives and Attributes
void myDisplay(){
/* clear the display */
glClear(GL_COLOR_BUFFER_BIT);
for(phi=-80; phi <= 80; phi+=20.0){
glBegin(GL_QUAD_STRIP);
phi20 = phi+20;
phir = (phi * 3.14159 / 180);
phir20 = (phi20 * 3.14159 / 180);
for(theta=-180; theta <= 180; theta += 20){
}/* End of for-loop */
glEnd();
}/* End for-loop */
glFlush();
}/* End of Sphere */
27
Primitives and Attributes
thetar = (theta * 3.14159 / 180);
/* compute the point coordinate */
x = sin(thetar)*cos(phir);
y = cos(thetar)*cos(phir);
z = sin(phir);
glVertex3d(x,y,z);
x = sin(thetar)*cos(phir20);
y = cos(thetar)*cos(phir20);
z = sin(phir20);
glVertex3d(x,y,z);
28
Primitives and Attributes
Color
 From the programmer’s view, the color is
handled through the APIs.
 There are two different approaches
• RGB-Color Model
• Index-Color Model
 Index-Color model is easier to support in
hardware implementation
• Low Memory Requirement
• Limited Available Color
29
Primitives and Attributes
RGB-Model
 Each color component is stored separately in
the frame buffer
 For hardware independence consideration,
color values range from 0.0 (none) to 1.0 (all),
30
Primitives and Attributes
RGB-Model
 Setting Operations
 Clear Color Setting
• Transparency: alpha = 0.0
• Opacity: alpha = 1.0;
glColor3f(r value, g value, b value);
glClearColor(r value, g value, b value, alpha);
31
Primitives and Attributes
Indexed Color
 Colors are indexed into tables of RGB values
 Example
• For k=m=8, we can choose 256 out of 16M colors.
glIndex(element);
glutSetColor(color, r value, g value, b value);
32
OpenGL Viewing
Description
 The viewing is to describe how we would like
these objects to appear.
 The concept is just as what we record in a
photograph
• Camera Position
• Focal Lens
 View Models
• Orthographic Viewing
• Two-Dimensional Viewing
33
OpenGL Viewing
Orthographic View
 It is the simple and OpenGL’s default view
 It is what we would get if the camera has an
infinitely long lens.
 All projections become parallel
34
OpenGL Viewing
Orthographic View
 There is a reference point in the projection
plane where we can make measurements.
• View Volume
• Projection Direction
35
OpenGL Viewing
Orthographic View
 The parameters are distances measured from
the camera
 It sees only the objects in the viewing volume.
 OpenGL Default
• Cube Volume: 2x2x2
void glOrtho(GLdouble left, GLdouble right, GLdouble bottom,
GLdouble top, GLdouble near, GLdouble far)
36
OpenGL Viewing
Two-Dimensional Viewing
 It is a special case of three-dimensional graphics
 Viewing rectangle is in the plane z=0.
void gluOrtho2D(GLdouble left, GLdouble bottom,
GLdouble right, GLdouble top);
37
OpenGL Viewing
Two-Dimensional Viewing
 It directly takes a viewing rectangle (clipping
rectangle) of our 2D world.
 The contents of viewing rectangle is
transferred to the display.
38
OpenGL Viewing
Aspect Ratio
 It is the ratio of rectangle’s width to its height.
 The independence of the object and viewing
can cause distortion effect.
void gluOrtho2D(left, bottom, right, top);
void glutInitWIndowSize(width, height)
39
OpenGL Viewing
Aspect Ratio
 The distortion effect can be avoided if clipping
rectangle and display have the same ratio.
void glViewport(Glint x, Glint y, Glsizei w, Glsizei h);
40
(x,y): lower-left corner
Sierpinski Gasket Example
Description
 It is shape of interest in areas such as fractal
geometry.
 It is an object that can be defined recursively
and randomly.
 The input is the three points that are
not collinear.
},,{ 210 vvv
41
Sierpinski Gasket Example
Construction Process
 Step 1: Pick an initial point inside the triangle.
 Step 2: Select one of the three vertices
randomly.
 Step 3: Display a marker at the middle point.
 Step 4: Replace with the middle point
 Step 5: Return to Step 2.
p
p
},,{ 210 vvv
42
Sierpinski Gasket Example
43
void myInit(){
/* set colors */
glClearColor(1.0, 1.0, 1.0, 0.0);
glColor3f(1.0, 0.0, 0.0);
/* set the view */
gluOrtho2D(0.0, 50.0, 0.0, 50.0);
}/* End of myInit */
int main(int argc, char** argv){
/* initialize the interaction */
glutInit(&argc, argv);
glutInitWindowSize(500, 500);
glutInitWindowPosition(0, 0);
glutCreateWindow("simple");
/* set the callback function */
glutDisplayFunc(myDisplay);
myInit();
/* start to run the program */
glutMainLoop();
}/* End of main */
Sierpinski Gasket Example: 2D
void myDisplay(){
/* declare three points */
GLfloat vertices[3][2]={{0.0,0.0},{25.0, 50.0},{50.0, 0.0}};
GLfloat p[2] = {25.0, 25.0};
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_POINTS);
for(int k=0; k < 5000; k++){
/* generate the random index */
int j = rand() % 3;
p[0] = (p[0] + vertices[j][0]) / 2;
p[1] = (p[1] + vertices[j][1]) / 2;
glVertex2fv(p);
}/* End of for-loop */
glEnd();
glFlush();
}/* End of GasketDisplay */
44
Sierpinski Gasket Example: 2D
45
Implicit Function Plotting
What is Implicit Function
 A function equals to a specific value
 It is a contour curves that correspond to a set
of fixed values
zyxf ),( 1),( 22
 yxyxf
z
Cutoff Value
z
),( yxf
46
Implicit Function Plotting
Marching Squares
 An algorithm finds an approximation of the
desired function from a set of samples.
 It starts from a set of samples )},({ jiij yxff 
xixxi  0
yjyyj  0
1,...2,1,0  Ni
1,...2,1,0  Mj
47
Implicit Function Plotting
Marching Squares
 The contour curves passes through the edge
• One Vertex:
• Adjacent Vertex:
0),(  zyxf
0),(  zyxf
Solution 1 Solution 2
Principle of Occam’s Razor: if there are multiple possible
explanation of phenomenon, choose the simplest one.
48
Implicit Function Plotting
Marching Squares
 Intersection Points
• Midpoint
• Interpolation
ba
xca
xx i



)(
Halfway Interpolation
49
Implicit Function Plotting
Marching Squares
16 possibilities
ambiguity
Translation
Inversion
50
Implicit Function Plotting
Marching Squares
 Ambiguity Effect
• We have no idea to prefer one over the other.
 Ambiguity Resolving
• Subdivide the cell into four smaller cells.
• Analyze these four cells until no ambiguity occurs.
51
Implicit Function Plotting
Example
04)(),( 4222222
 bxaayxyxf
Midpoint Interpolation
49.0a
5.0b
52
Implicit Function Plotting
53
void myDisplay(){
/* clear the display */
glClear(GL_COLOR_BUFFER_BIT);
double data[N_X][N_Y];
double sx, sy;
glBegin(GL_POINTS);
for(int i=0; i < N_X; i++)
for(int j=0; j < N_Y; j++){
sx = MIN_X + (i * (MAX_X - MIN_X) / N_X);
sy = MIN_Y + (j * (MAX_Y - MIN_Y) / N_Y);
data[i][j] = myFunction(sx, sy);
glVertex2d(sx,sy);
}/* End of for-loop */
glEnd();
……………
}
(sx,sy)
N_X=4
N_Y=4
(MIN_X,MIN_Y)
(MAX_X,MAX_Y)
Implicit Function Plotting
54
void myDisplay(){
…………
/* process each cell */
for(int i=0; i < N_X; i++)
for(int j=0; j < N_Y; j++){
int c;
/* check the cell case */
c = cell(data[i][j], data[i+1][j], data[i+1][j+1], data[i][j+1]);
/* drawing lines depending on the cell case */
drawLine(c, i, j, data[i][j], data[i+1][j], data[i+1][j+1], data[i][j+1]);
}/* End of for-loop */
glFlush();
}/* End of GasketDisplay */
Implicit Function Plotting
Example: Implementation
55
double myFunction(double x, double y){
double a=0.49, b=0.5;
/* compute ovals of cassini */
return (x*x + y*y + a*a)*(x*x + y*y + a*a) - 4*a*a*x*x - b*b*b*b;
}/* End of myFunction */
Implicit Function Plotting
Example: Implementation
56
int cell(double a, double b, double c, double d){
int n=0;
if(a > 0) n = n+1;
if(b > 0) n = n+2;
if(c > 0) n = n+4;
if(d > 0) n = n+8;
return n;
}/* End of cell */
a b
cd
0
15
1
14
2
13
3
12
Implicit Function Plotting
57
void drawLine(int state, int i, int j, double a, double b, double c, double d){
x = MIN_X + (double) i * (MAX_X - MIN_X) / N_X;
y = MIN_Y + (double) j * (MAX_Y - MIN_Y) / N_Y;
halfx = (MAX_X - MIN_X) / (2 * N_X);
halfy = (MAX_Y - MIN_Y) / (2 * N_Y);
x1 = x2 = x;
y1 = y2 = y;
; determine (x1, y1) and (x2, y2)
……………….
glBegin(GL_LINES);
glVertex2d(x1, y1);
glVertex2d(x2, y2);
glEnd();
}/* End of drawLines */
(x,y)
2*halfy
2*halfx
Implicit Function Plotting
58
void drawLine(int state, int i, int j, double a, double b, double c, double d){
……….
switch(state){
/* draw nothing */
case 0: case 15:
break;
case 1: case 14:
x1 = x; y1 = y + halfy;
x2 = x + halfx; y2 = y;
break;
case 2: case 13:
x1 = x + halfx; y1 = y;
x2 = x + halfx * 2; y2 = y + halfy;
break;
}/* End of switch */
…………
}/* End of drawLines */
(x1,y1)
(x2,y2)
59

Contenu connexe

Tendances

NVIDIA OpenGL in 2016
NVIDIA OpenGL in 2016NVIDIA OpenGL in 2016
NVIDIA OpenGL in 2016Mark Kilgard
 
OpenGL 4.4 - Scene Rendering Techniques
OpenGL 4.4 - Scene Rendering TechniquesOpenGL 4.4 - Scene Rendering Techniques
OpenGL 4.4 - Scene Rendering TechniquesNarann29
 
U-Netpresentation.pptx
U-Netpresentation.pptxU-Netpresentation.pptx
U-Netpresentation.pptxNoorUlHaq47
 
Introduction of openGL
Introduction  of openGLIntroduction  of openGL
Introduction of openGLGary Yeh
 
Intro to Deep learning - Autoencoders
Intro to Deep learning - Autoencoders Intro to Deep learning - Autoencoders
Intro to Deep learning - Autoencoders Akash Goel
 
Genetic algorithm for hyperparameter tuning
Genetic algorithm for hyperparameter tuningGenetic algorithm for hyperparameter tuning
Genetic algorithm for hyperparameter tuningDr. Jyoti Obia
 
Getting started with Burst – Unite Copenhagen 2019
Getting started with Burst – Unite Copenhagen 2019Getting started with Burst – Unite Copenhagen 2019
Getting started with Burst – Unite Copenhagen 2019Unity Technologies
 
Introduction to Machine Learning Classifiers
Introduction to Machine Learning ClassifiersIntroduction to Machine Learning Classifiers
Introduction to Machine Learning ClassifiersFunctional Imperative
 
OpenGL Introduction.
OpenGL Introduction.OpenGL Introduction.
OpenGL Introduction.Girish Ghate
 
Big data Clustering Algorithms And Strategies
Big data Clustering Algorithms And StrategiesBig data Clustering Algorithms And Strategies
Big data Clustering Algorithms And StrategiesFarzad Nozarian
 
NVIDIA OpenGL and Vulkan Support for 2017
NVIDIA OpenGL and Vulkan Support for 2017NVIDIA OpenGL and Vulkan Support for 2017
NVIDIA OpenGL and Vulkan Support for 2017Mark Kilgard
 
Daa:Dynamic Programing
Daa:Dynamic ProgramingDaa:Dynamic Programing
Daa:Dynamic Programingrupali_2bonde
 
Intro to scan conversion
Intro to scan conversionIntro to scan conversion
Intro to scan conversionMohd Arif
 
A brief introduction to Gaussian process
A brief introduction to Gaussian processA brief introduction to Gaussian process
A brief introduction to Gaussian processEric Xihui Lin
 

Tendances (20)

OpenGL Introduction
OpenGL IntroductionOpenGL Introduction
OpenGL Introduction
 
NVIDIA OpenGL in 2016
NVIDIA OpenGL in 2016NVIDIA OpenGL in 2016
NVIDIA OpenGL in 2016
 
OpenGL 4.4 - Scene Rendering Techniques
OpenGL 4.4 - Scene Rendering TechniquesOpenGL 4.4 - Scene Rendering Techniques
OpenGL 4.4 - Scene Rendering Techniques
 
U-Netpresentation.pptx
U-Netpresentation.pptxU-Netpresentation.pptx
U-Netpresentation.pptx
 
Introduction of openGL
Introduction  of openGLIntroduction  of openGL
Introduction of openGL
 
Intro to Deep learning - Autoencoders
Intro to Deep learning - Autoencoders Intro to Deep learning - Autoencoders
Intro to Deep learning - Autoencoders
 
Genetic algorithm for hyperparameter tuning
Genetic algorithm for hyperparameter tuningGenetic algorithm for hyperparameter tuning
Genetic algorithm for hyperparameter tuning
 
Getting started with Burst – Unite Copenhagen 2019
Getting started with Burst – Unite Copenhagen 2019Getting started with Burst – Unite Copenhagen 2019
Getting started with Burst – Unite Copenhagen 2019
 
Introduction to Machine Learning Classifiers
Introduction to Machine Learning ClassifiersIntroduction to Machine Learning Classifiers
Introduction to Machine Learning Classifiers
 
OpenGL Introduction.
OpenGL Introduction.OpenGL Introduction.
OpenGL Introduction.
 
Big data Clustering Algorithms And Strategies
Big data Clustering Algorithms And StrategiesBig data Clustering Algorithms And Strategies
Big data Clustering Algorithms And Strategies
 
EGL 1.4 Reference Card
EGL 1.4 Reference CardEGL 1.4 Reference Card
EGL 1.4 Reference Card
 
WebGL 2.0 Reference Guide
WebGL 2.0 Reference GuideWebGL 2.0 Reference Guide
WebGL 2.0 Reference Guide
 
NVIDIA OpenGL and Vulkan Support for 2017
NVIDIA OpenGL and Vulkan Support for 2017NVIDIA OpenGL and Vulkan Support for 2017
NVIDIA OpenGL and Vulkan Support for 2017
 
Daa:Dynamic Programing
Daa:Dynamic ProgramingDaa:Dynamic Programing
Daa:Dynamic Programing
 
Intro to scan conversion
Intro to scan conversionIntro to scan conversion
Intro to scan conversion
 
A brief introduction to Gaussian process
A brief introduction to Gaussian processA brief introduction to Gaussian process
A brief introduction to Gaussian process
 
Fuzzy Clustering(C-means, K-means)
Fuzzy Clustering(C-means, K-means)Fuzzy Clustering(C-means, K-means)
Fuzzy Clustering(C-means, K-means)
 
Programming with OpenGL
Programming with OpenGLProgramming with OpenGL
Programming with OpenGL
 
8 queens problem using ga
8 queens problem using ga8 queens problem using ga
8 queens problem using ga
 

En vedette

CG OpenGL 3D object representations-course 8
CG OpenGL 3D object representations-course 8CG OpenGL 3D object representations-course 8
CG OpenGL 3D object representations-course 8fungfung Chen
 
Opengl lec 3
Opengl lec 3Opengl lec 3
Opengl lec 3elnaqah
 
3 d graphics with opengl part 2
3 d graphics with opengl  part 23 d graphics with opengl  part 2
3 d graphics with opengl part 2Sardar Alam
 
CG OpenGL polar curves & input display color-course 4
CG OpenGL polar curves & input display color-course 4CG OpenGL polar curves & input display color-course 4
CG OpenGL polar curves & input display color-course 4fungfung Chen
 
Ch19 network layer-logical add
Ch19 network layer-logical addCh19 network layer-logical add
Ch19 network layer-logical addMohammed Romi
 
Convert Your Legacy OpenGL Code to Modern OpenGL with Qt
Convert Your Legacy OpenGL Code to Modern OpenGL with QtConvert Your Legacy OpenGL Code to Modern OpenGL with Qt
Convert Your Legacy OpenGL Code to Modern OpenGL with QtICS
 
Ian Sommerville, Software Engineering, 9th Edition Ch 23
Ian Sommerville,  Software Engineering, 9th Edition Ch 23Ian Sommerville,  Software Engineering, 9th Edition Ch 23
Ian Sommerville, Software Engineering, 9th Edition Ch 23Mohammed Romi
 
Ch 4 software engineering
Ch 4 software engineeringCh 4 software engineering
Ch 4 software engineeringMohammed Romi
 

En vedette (20)

CG OpenGL 3D object representations-course 8
CG OpenGL 3D object representations-course 8CG OpenGL 3D object representations-course 8
CG OpenGL 3D object representations-course 8
 
Opengl lec 3
Opengl lec 3Opengl lec 3
Opengl lec 3
 
3 d graphics with opengl part 2
3 d graphics with opengl  part 23 d graphics with opengl  part 2
3 d graphics with opengl part 2
 
CG OpenGL polar curves & input display color-course 4
CG OpenGL polar curves & input display color-course 4CG OpenGL polar curves & input display color-course 4
CG OpenGL polar curves & input display color-course 4
 
Angel6 e05
Angel6 e05Angel6 e05
Angel6 e05
 
Ch8
Ch8Ch8
Ch8
 
OpenGL Starter L01
OpenGL Starter L01OpenGL Starter L01
OpenGL Starter L01
 
Ch19 network layer-logical add
Ch19 network layer-logical addCh19 network layer-logical add
Ch19 network layer-logical add
 
Ir 09
Ir   09Ir   09
Ir 09
 
Ir 03
Ir   03Ir   03
Ir 03
 
Swe notes
Swe notesSwe notes
Swe notes
 
OpenGL Starter L02
OpenGL Starter L02OpenGL Starter L02
OpenGL Starter L02
 
Convert Your Legacy OpenGL Code to Modern OpenGL with Qt
Convert Your Legacy OpenGL Code to Modern OpenGL with QtConvert Your Legacy OpenGL Code to Modern OpenGL with Qt
Convert Your Legacy OpenGL Code to Modern OpenGL with Qt
 
Ch12
Ch12Ch12
Ch12
 
Open gl
Open glOpen gl
Open gl
 
Web Introduction
Web IntroductionWeb Introduction
Web Introduction
 
Ir 08
Ir   08Ir   08
Ir 08
 
Ian Sommerville, Software Engineering, 9th Edition Ch 23
Ian Sommerville,  Software Engineering, 9th Edition Ch 23Ian Sommerville,  Software Engineering, 9th Edition Ch 23
Ian Sommerville, Software Engineering, 9th Edition Ch 23
 
Ch2020
Ch2020Ch2020
Ch2020
 
Ch 4 software engineering
Ch 4 software engineeringCh 4 software engineering
Ch 4 software engineering
 

Similaire à Chapter02 graphics-programming

openGL basics for sample program (1).ppt
openGL basics for sample program (1).pptopenGL basics for sample program (1).ppt
openGL basics for sample program (1).pptHIMANKMISHRA2
 
openGL basics for sample program.ppt
openGL basics for sample program.pptopenGL basics for sample program.ppt
openGL basics for sample program.pptHIMANKMISHRA2
 
3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptxssuser255bf1
 
Computer Graphics
Computer GraphicsComputer Graphics
Computer GraphicsAdri Jovin
 
3D Programming Basics: WebGL
3D Programming Basics: WebGL3D Programming Basics: WebGL
3D Programming Basics: WebGLGlobant
 
Graphical Objects and Scene Graphs
Graphical Objects and Scene GraphsGraphical Objects and Scene Graphs
Graphical Objects and Scene GraphsSyed Zaid Irshad
 
426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer ToolsMark Billinghurst
 
Lab Practices and Works Documentation / Report on Computer Graphics
Lab Practices and Works Documentation / Report on Computer GraphicsLab Practices and Works Documentation / Report on Computer Graphics
Lab Practices and Works Documentation / Report on Computer GraphicsRup Chowdhury
 

Similaire à Chapter02 graphics-programming (20)

openGL basics for sample program (1).ppt
openGL basics for sample program (1).pptopenGL basics for sample program (1).ppt
openGL basics for sample program (1).ppt
 
openGL basics for sample program.ppt
openGL basics for sample program.pptopenGL basics for sample program.ppt
openGL basics for sample program.ppt
 
3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx3 CG_U1_P2_PPT_3 OpenGL.pptx
3 CG_U1_P2_PPT_3 OpenGL.pptx
 
september11.ppt
september11.pptseptember11.ppt
september11.ppt
 
Programming with OpenGL
Programming with OpenGLProgramming with OpenGL
Programming with OpenGL
 
Opengl (1)
Opengl (1)Opengl (1)
Opengl (1)
 
Introduction to OpenGL.ppt
Introduction to OpenGL.pptIntroduction to OpenGL.ppt
Introduction to OpenGL.ppt
 
Open gl basics
Open gl basicsOpen gl basics
Open gl basics
 
Computer Graphics
Computer GraphicsComputer Graphics
Computer Graphics
 
18csl67 vtu lab manual
18csl67 vtu lab manual18csl67 vtu lab manual
18csl67 vtu lab manual
 
CGChapter 3.pptx
CGChapter 3.pptxCGChapter 3.pptx
CGChapter 3.pptx
 
Graphics Libraries
Graphics LibrariesGraphics Libraries
Graphics Libraries
 
Opengl basics
Opengl basicsOpengl basics
Opengl basics
 
3D Programming Basics: WebGL
3D Programming Basics: WebGL3D Programming Basics: WebGL
3D Programming Basics: WebGL
 
Graphical Objects and Scene Graphs
Graphical Objects and Scene GraphsGraphical Objects and Scene Graphs
Graphical Objects and Scene Graphs
 
Bai 1
Bai 1Bai 1
Bai 1
 
Introduction to 2D/3D Graphics
Introduction to 2D/3D GraphicsIntroduction to 2D/3D Graphics
Introduction to 2D/3D Graphics
 
426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools426 lecture 4: AR Developer Tools
426 lecture 4: AR Developer Tools
 
Lab Practices and Works Documentation / Report on Computer Graphics
Lab Practices and Works Documentation / Report on Computer GraphicsLab Practices and Works Documentation / Report on Computer Graphics
Lab Practices and Works Documentation / Report on Computer Graphics
 
Pixel shaders
Pixel shadersPixel shaders
Pixel shaders
 

Plus de Mohammed Romi

Ai 02 intelligent_agents(1)
Ai 02 intelligent_agents(1)Ai 02 intelligent_agents(1)
Ai 02 intelligent_agents(1)Mohammed Romi
 
Ai 03 solving_problems_by_searching
Ai 03 solving_problems_by_searchingAi 03 solving_problems_by_searching
Ai 03 solving_problems_by_searchingMohammed Romi
 
Ian Sommerville, Software Engineering, 9th Edition Ch 4
Ian Sommerville,  Software Engineering, 9th Edition Ch 4Ian Sommerville,  Software Engineering, 9th Edition Ch 4
Ian Sommerville, Software Engineering, 9th Edition Ch 4Mohammed Romi
 
Ian Sommerville, Software Engineering, 9th Edition Ch2
Ian Sommerville,  Software Engineering, 9th Edition Ch2Ian Sommerville,  Software Engineering, 9th Edition Ch2
Ian Sommerville, Software Engineering, 9th Edition Ch2Mohammed Romi
 
Ian Sommerville, Software Engineering, 9th Edition Ch1
Ian Sommerville,  Software Engineering, 9th Edition Ch1Ian Sommerville,  Software Engineering, 9th Edition Ch1
Ian Sommerville, Software Engineering, 9th Edition Ch1Mohammed Romi
 
Ian Sommerville, Software Engineering, 9th EditionCh 8
Ian Sommerville,  Software Engineering, 9th EditionCh 8Ian Sommerville,  Software Engineering, 9th EditionCh 8
Ian Sommerville, Software Engineering, 9th EditionCh 8Mohammed Romi
 

Plus de Mohammed Romi (12)

Ai 02 intelligent_agents(1)
Ai 02 intelligent_agents(1)Ai 02 intelligent_agents(1)
Ai 02 intelligent_agents(1)
 
Ai 01 introduction
Ai 01 introductionAi 01 introduction
Ai 01 introduction
 
Ai 03 solving_problems_by_searching
Ai 03 solving_problems_by_searchingAi 03 solving_problems_by_searching
Ai 03 solving_problems_by_searching
 
Swiching
SwichingSwiching
Swiching
 
Ir 02
Ir   02Ir   02
Ir 02
 
Ir 01
Ir   01Ir   01
Ir 01
 
Ian Sommerville, Software Engineering, 9th Edition Ch 4
Ian Sommerville,  Software Engineering, 9th Edition Ch 4Ian Sommerville,  Software Engineering, 9th Edition Ch 4
Ian Sommerville, Software Engineering, 9th Edition Ch 4
 
Ian Sommerville, Software Engineering, 9th Edition Ch2
Ian Sommerville,  Software Engineering, 9th Edition Ch2Ian Sommerville,  Software Engineering, 9th Edition Ch2
Ian Sommerville, Software Engineering, 9th Edition Ch2
 
Ian Sommerville, Software Engineering, 9th Edition Ch1
Ian Sommerville,  Software Engineering, 9th Edition Ch1Ian Sommerville,  Software Engineering, 9th Edition Ch1
Ian Sommerville, Software Engineering, 9th Edition Ch1
 
Ian Sommerville, Software Engineering, 9th EditionCh 8
Ian Sommerville,  Software Engineering, 9th EditionCh 8Ian Sommerville,  Software Engineering, 9th EditionCh 8
Ian Sommerville, Software Engineering, 9th EditionCh 8
 
Ch7
Ch7Ch7
Ch7
 
Ch 6
Ch 6Ch 6
Ch 6
 

Dernier

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesShubhangi Sonawane
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 

Dernier (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 

Chapter02 graphics-programming

  • 2. Outlines Introduction OpenGL API Primitives and Attributes OpenGL Viewing Sierpinski Gasket Example Implicit Functions Plotting 2
  • 3. Introduction Graphics System  The basic model of a graphics package is a black box described by its input and output.  Input Interface • Function Calls from User Program • Measurements from Input Devices  Output Interface • Graphics to Output Device. 3
  • 4. Introduction Graphics System  API Categories • Primitive Functions • Attribute Functions • Viewing Functions • Transformation Functions • Input Functions • Control Functions • Query Functions 4
  • 5. Introduction Coordinate System  It is difficult to specify the vertices in units of the physical device.  Device-independent graphics makes users easy to define their own coordinate system • World Coordinate System • Application Coordinate System. Rendering Process 5
  • 6. Introduction Running OpenGL on Windows VC++  Step 1: Download the GLUT for windows from website.  Step 2: Put the following files in the locations • glut32.dll -> C:windowssystem32 • glut32.lib -> <VC Install Dir>lib • glut.h -> <VC Install Dir>include  Step 3: Create a VC++ Windows Console Project  Step 4: Add a C++ File to the created project  Step 5: Add opengl32.lib glu32.lib glut32.lib to • Project->Properties->Configuration Properties->Linker->Input- >Additional Dependencies 6
  • 7. OpenGL API What is OpenGL (Open Graphics Library)  It is a layer between programmer and graphics hardware.  It is designed as hardware-independent interface to be implemented on many different hardware platforms  This interface consists of over 700 distinct commands. • Software library • Several hundred procedures and functions 7
  • 8. OpenGL API What is OpenGL Applicaton Graphics Package OpenGL Application Programming Interface Hardware and software Output Device Input Device Applicaton Input Device 8
  • 9. OpenGL API Library Organization  OpenGL (GL) • Core Library • OpenGL on Windows.  OpenGL Utility Library (GLU) • It uses only GL functions to create common objects. • It is available in all OpenGL implementations.  OpenGL Utility Toolkit (GLUT) • It provides the minimum functionalities expected for interacting with modern windowing systems. 9
  • 10. OpenGL API Library Organization GLX for X window systems WGL for Windows AGL for Macintosh 10
  • 11. OpenGL API Program Structure  Step 1: Initialize the interaction between windows and OpenGL.  Step 2: Specify the window properties and further create window.  Step 3: Set the callback functions  Step 4: Initialize the program attributes  Step 5: Start to run the program 11
  • 12. OpenGL API Program Framework #include <GL/glut.h> int main(int argc, char** argv) { glutInit(&argc,argv); glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB); glutInitWindowSize(500,500); glutInitWindowPosition(0,0); glutCreateWindow("simple"); glutDisplayFunc(myDisplay); myInit(); glutMainLoop(); } includes gl.h define window properties set OpenGL state enter event loop display callback interaction initialization 12
  • 13. OpenGL API Program Framework: Window Management  glutInit():initializes GLUT and should be called before any other GLUT routine.  glutInitDisplayMode():specifies the color model (RGB or color-index color model)  glutInitWindowSize(): specifies the size, in pixels, of your window.  glutInitWindowPosition():specifies the screen location for the upper-left corner  glutCreateWindow():creates a window with an OpenGL context. 13
  • 14. OpenGL API Program Framework void myDisplay(){ /* clear the display */ glClear(GL_COLOR_BUFFER_BIT); glFlush(); }/* End of GasketDisplay */ void myInit(){ /* set colors */ glClearColor(1.0, 1.0, 1.0, 0.0); }/* End of myInit */ 14
  • 15. OpenGL API Program Framework: Color Manipulation  glClearColor():establishes what color the window will be cleared to.  glClear():actually clears the window.  glColor3f():establishes what color to use for drawing objects.  glFlush():ensures that the drawing command are actually executed. 15 Remark: OpenGL is a state machine. You put it into various states or modes that remain in effect until you change them
  • 16. Primitives and Attributes Primitive Description  An API should contain a small set of primitives that the hardware can be expected to support.  The primitives should be orthogonal. OpenGL Primitive  Basic Library: has a small set of primitives  GLU Library: contains a rich set of objects derived from basic library. 16
  • 17. Primitives and Attributes Primitive Classes  Geometric Primitives • They are subject to series of geometric operations. • They include points, line segments, curves, etc.  Raster Primitives • They are lack of geometric properties • They may be array of pixels. 17
  • 18. Primitives and Attributes Program Form of Primitives  The basic ones are specified by a set of vertices.  The type specifies how OpenGL assembles the vertices. glBegin(type); glVertex*(…); glVertex*(…); . . glVertex*(…); glEnd(); 18
  • 19. Primitives and Attributes Program Form of Primitives  Vertex Function: glVertex*() • * : can be as the form [nt | ntv] • n : the number of dimensions (2, 3, 4) • t : data type (i: integer, f: float, and d: double) • v : the variables is a pointer. glVertex2i (GLint x, GLint y); glVertex3f(GLfloat x, GLfloat y, GLfloat z); glVertex2fv(p); // int p[2] = {1.0, 1.0} 19
  • 20. Primitives and Attributes Points and Line Segment  Point: GL_POINTS  Line Segments: GL_LINES  Polygons: • GL_LINE_STRIP • GL_LINE_LOOP 20
  • 21. Primitives and Attributes Polygon Definition  It is described by a line loop  It has a well-defined interior. Polygon in Computer Graphics  The polygon can be displayed rapidly.  It can be used to approximate arbitrary surfaces. 21
  • 22. Primitives and Attributes Polygon Properties  Simple: no two edges cross each other  Convex: all points on the line segment between two points inside the object.  Flat: any three no-collinear determines a plane where that triangle lies. Simple Non-Simple Convexity 22
  • 23. Primitives and Attributes Polygon Primitives  Polygons: GL_POLYGON  Triangles: GL_TRIANGLES  Quadrilaterals: GL_QUADS  Stripes: GL_TRIANGLE_STRIP  Fans: GL_TRIANGLE_FAN 23
  • 24. Primitives and Attributes Attributes  An attribute is any property that determines how a geometric primitive is to be rendered.  Each geometric primitive has a set of attributes. • Point: Color • Line Segments: Color, Thickness, and Pattern • Polygon: Pattern 24
  • 25. Primitives and Attributes Example: Sphere Approximation  A set of polygons are used to construct an approximation to a sphere. • Longitude • Latitude 25
  • 26. Primitives and Attributes Example: Sphere Approximation  We use quad strips primitive to approximate the sphere.    sin),( coscos),( cossin),(    z y x 26
  • 27. Primitives and Attributes void myDisplay(){ /* clear the display */ glClear(GL_COLOR_BUFFER_BIT); for(phi=-80; phi <= 80; phi+=20.0){ glBegin(GL_QUAD_STRIP); phi20 = phi+20; phir = (phi * 3.14159 / 180); phir20 = (phi20 * 3.14159 / 180); for(theta=-180; theta <= 180; theta += 20){ }/* End of for-loop */ glEnd(); }/* End for-loop */ glFlush(); }/* End of Sphere */ 27
  • 28. Primitives and Attributes thetar = (theta * 3.14159 / 180); /* compute the point coordinate */ x = sin(thetar)*cos(phir); y = cos(thetar)*cos(phir); z = sin(phir); glVertex3d(x,y,z); x = sin(thetar)*cos(phir20); y = cos(thetar)*cos(phir20); z = sin(phir20); glVertex3d(x,y,z); 28
  • 29. Primitives and Attributes Color  From the programmer’s view, the color is handled through the APIs.  There are two different approaches • RGB-Color Model • Index-Color Model  Index-Color model is easier to support in hardware implementation • Low Memory Requirement • Limited Available Color 29
  • 30. Primitives and Attributes RGB-Model  Each color component is stored separately in the frame buffer  For hardware independence consideration, color values range from 0.0 (none) to 1.0 (all), 30
  • 31. Primitives and Attributes RGB-Model  Setting Operations  Clear Color Setting • Transparency: alpha = 0.0 • Opacity: alpha = 1.0; glColor3f(r value, g value, b value); glClearColor(r value, g value, b value, alpha); 31
  • 32. Primitives and Attributes Indexed Color  Colors are indexed into tables of RGB values  Example • For k=m=8, we can choose 256 out of 16M colors. glIndex(element); glutSetColor(color, r value, g value, b value); 32
  • 33. OpenGL Viewing Description  The viewing is to describe how we would like these objects to appear.  The concept is just as what we record in a photograph • Camera Position • Focal Lens  View Models • Orthographic Viewing • Two-Dimensional Viewing 33
  • 34. OpenGL Viewing Orthographic View  It is the simple and OpenGL’s default view  It is what we would get if the camera has an infinitely long lens.  All projections become parallel 34
  • 35. OpenGL Viewing Orthographic View  There is a reference point in the projection plane where we can make measurements. • View Volume • Projection Direction 35
  • 36. OpenGL Viewing Orthographic View  The parameters are distances measured from the camera  It sees only the objects in the viewing volume.  OpenGL Default • Cube Volume: 2x2x2 void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near, GLdouble far) 36
  • 37. OpenGL Viewing Two-Dimensional Viewing  It is a special case of three-dimensional graphics  Viewing rectangle is in the plane z=0. void gluOrtho2D(GLdouble left, GLdouble bottom, GLdouble right, GLdouble top); 37
  • 38. OpenGL Viewing Two-Dimensional Viewing  It directly takes a viewing rectangle (clipping rectangle) of our 2D world.  The contents of viewing rectangle is transferred to the display. 38
  • 39. OpenGL Viewing Aspect Ratio  It is the ratio of rectangle’s width to its height.  The independence of the object and viewing can cause distortion effect. void gluOrtho2D(left, bottom, right, top); void glutInitWIndowSize(width, height) 39
  • 40. OpenGL Viewing Aspect Ratio  The distortion effect can be avoided if clipping rectangle and display have the same ratio. void glViewport(Glint x, Glint y, Glsizei w, Glsizei h); 40 (x,y): lower-left corner
  • 41. Sierpinski Gasket Example Description  It is shape of interest in areas such as fractal geometry.  It is an object that can be defined recursively and randomly.  The input is the three points that are not collinear. },,{ 210 vvv 41
  • 42. Sierpinski Gasket Example Construction Process  Step 1: Pick an initial point inside the triangle.  Step 2: Select one of the three vertices randomly.  Step 3: Display a marker at the middle point.  Step 4: Replace with the middle point  Step 5: Return to Step 2. p p },,{ 210 vvv 42
  • 43. Sierpinski Gasket Example 43 void myInit(){ /* set colors */ glClearColor(1.0, 1.0, 1.0, 0.0); glColor3f(1.0, 0.0, 0.0); /* set the view */ gluOrtho2D(0.0, 50.0, 0.0, 50.0); }/* End of myInit */ int main(int argc, char** argv){ /* initialize the interaction */ glutInit(&argc, argv); glutInitWindowSize(500, 500); glutInitWindowPosition(0, 0); glutCreateWindow("simple"); /* set the callback function */ glutDisplayFunc(myDisplay); myInit(); /* start to run the program */ glutMainLoop(); }/* End of main */
  • 44. Sierpinski Gasket Example: 2D void myDisplay(){ /* declare three points */ GLfloat vertices[3][2]={{0.0,0.0},{25.0, 50.0},{50.0, 0.0}}; GLfloat p[2] = {25.0, 25.0}; glClear(GL_COLOR_BUFFER_BIT); glBegin(GL_POINTS); for(int k=0; k < 5000; k++){ /* generate the random index */ int j = rand() % 3; p[0] = (p[0] + vertices[j][0]) / 2; p[1] = (p[1] + vertices[j][1]) / 2; glVertex2fv(p); }/* End of for-loop */ glEnd(); glFlush(); }/* End of GasketDisplay */ 44
  • 46. Implicit Function Plotting What is Implicit Function  A function equals to a specific value  It is a contour curves that correspond to a set of fixed values zyxf ),( 1),( 22  yxyxf z Cutoff Value z ),( yxf 46
  • 47. Implicit Function Plotting Marching Squares  An algorithm finds an approximation of the desired function from a set of samples.  It starts from a set of samples )},({ jiij yxff  xixxi  0 yjyyj  0 1,...2,1,0  Ni 1,...2,1,0  Mj 47
  • 48. Implicit Function Plotting Marching Squares  The contour curves passes through the edge • One Vertex: • Adjacent Vertex: 0),(  zyxf 0),(  zyxf Solution 1 Solution 2 Principle of Occam’s Razor: if there are multiple possible explanation of phenomenon, choose the simplest one. 48
  • 49. Implicit Function Plotting Marching Squares  Intersection Points • Midpoint • Interpolation ba xca xx i    )( Halfway Interpolation 49
  • 50. Implicit Function Plotting Marching Squares 16 possibilities ambiguity Translation Inversion 50
  • 51. Implicit Function Plotting Marching Squares  Ambiguity Effect • We have no idea to prefer one over the other.  Ambiguity Resolving • Subdivide the cell into four smaller cells. • Analyze these four cells until no ambiguity occurs. 51
  • 52. Implicit Function Plotting Example 04)(),( 4222222  bxaayxyxf Midpoint Interpolation 49.0a 5.0b 52
  • 53. Implicit Function Plotting 53 void myDisplay(){ /* clear the display */ glClear(GL_COLOR_BUFFER_BIT); double data[N_X][N_Y]; double sx, sy; glBegin(GL_POINTS); for(int i=0; i < N_X; i++) for(int j=0; j < N_Y; j++){ sx = MIN_X + (i * (MAX_X - MIN_X) / N_X); sy = MIN_Y + (j * (MAX_Y - MIN_Y) / N_Y); data[i][j] = myFunction(sx, sy); glVertex2d(sx,sy); }/* End of for-loop */ glEnd(); …………… } (sx,sy) N_X=4 N_Y=4 (MIN_X,MIN_Y) (MAX_X,MAX_Y)
  • 54. Implicit Function Plotting 54 void myDisplay(){ ………… /* process each cell */ for(int i=0; i < N_X; i++) for(int j=0; j < N_Y; j++){ int c; /* check the cell case */ c = cell(data[i][j], data[i+1][j], data[i+1][j+1], data[i][j+1]); /* drawing lines depending on the cell case */ drawLine(c, i, j, data[i][j], data[i+1][j], data[i+1][j+1], data[i][j+1]); }/* End of for-loop */ glFlush(); }/* End of GasketDisplay */
  • 55. Implicit Function Plotting Example: Implementation 55 double myFunction(double x, double y){ double a=0.49, b=0.5; /* compute ovals of cassini */ return (x*x + y*y + a*a)*(x*x + y*y + a*a) - 4*a*a*x*x - b*b*b*b; }/* End of myFunction */
  • 56. Implicit Function Plotting Example: Implementation 56 int cell(double a, double b, double c, double d){ int n=0; if(a > 0) n = n+1; if(b > 0) n = n+2; if(c > 0) n = n+4; if(d > 0) n = n+8; return n; }/* End of cell */ a b cd 0 15 1 14 2 13 3 12
  • 57. Implicit Function Plotting 57 void drawLine(int state, int i, int j, double a, double b, double c, double d){ x = MIN_X + (double) i * (MAX_X - MIN_X) / N_X; y = MIN_Y + (double) j * (MAX_Y - MIN_Y) / N_Y; halfx = (MAX_X - MIN_X) / (2 * N_X); halfy = (MAX_Y - MIN_Y) / (2 * N_Y); x1 = x2 = x; y1 = y2 = y; ; determine (x1, y1) and (x2, y2) ………………. glBegin(GL_LINES); glVertex2d(x1, y1); glVertex2d(x2, y2); glEnd(); }/* End of drawLines */ (x,y) 2*halfy 2*halfx
  • 58. Implicit Function Plotting 58 void drawLine(int state, int i, int j, double a, double b, double c, double d){ ………. switch(state){ /* draw nothing */ case 0: case 15: break; case 1: case 14: x1 = x; y1 = y + halfy; x2 = x + halfx; y2 = y; break; case 2: case 13: x1 = x + halfx; y1 = y; x2 = x + halfx * 2; y2 = y + halfy; break; }/* End of switch */ ………… }/* End of drawLines */ (x1,y1) (x2,y2)
  • 59. 59