Geometry. CS 537 Interactive Computer Graphics Prof. David E. Breen Department of Computer Science

Similar documents
C O M P U T E R G R A P H I C S. Computer Graphics. Three-Dimensional Graphics I. Guoying Zhao 1 / 52

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

CS452/552; EE465/505. Geometry Transformations

Objectives. Geometry. Coordinate-Free Geometry. Basic Elements. Transformations to Change Coordinate Systems. Scalars

Objectives. Geometry. Basic Elements. Coordinate-Free Geometry. Transformations to Change Coordinate Systems. Scalars

Today s Agenda. Geometry

BASIC ELEMENTS. Geometry is the study of the relationships among objects in an n-dimensional space

Geometry. Prof. George Wolberg Dept. of Computer Science City College of New York

Basic Elements. Geometry is the study of the relationships among objects in an n-dimensional space

Computer Graphics. Coordinate Systems and Change of Frames. Based on slides by Dianna Xu, Bryn Mawr College

Last week. Machiraju/Zhang/Möller

Three Main Themes of Computer Graphics

Input and Interaction. Angel and Shreiner: Interactive Computer Graphics 7E Addison-Wesley 2015

Transformations Computer Graphics I Lecture 4

Lecture 4: Transformations and Matrices. CSE Computer Graphics (Fall 2010)

Transformations Computer Graphics I Lecture 4

Lecture 9: Transformations. CITS3003 Graphics & Animation

Transformations. CSCI 420 Computer Graphics Lecture 4

CS 536 Computer Graphics Intro to Curves Week 1, Lecture 2

Linear Algebra Part I - Linear Spaces

EECE 478. Learning Objectives. Learning Objectives. Linear Algebra and 3D Geometry. Linear algebra in 3D. Coordinate systems

COMP30019 Graphics and Interaction Three-dimensional transformation geometry and perspective

Graphics and Interaction Transformation geometry and homogeneous coordinates

COMP30019 Graphics and Interaction Transformation geometry and homogeneous coordinates

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

Transformations. CSCI 420 Computer Graphics Lecture 5

Transformations. OpenGL Transformations. 4x4 Model-view Matrix (this lecture) OpenGL Transformation Matrices. 4x4 Projection Matrix (next lecture)

CT5510: Computer Graphics. Transformation BOCHANG MOON

DRAFT: Mathematical Background for Three-Dimensional Computer Graphics. Jonathan R. Senning Gordon College

CS 432 Interactive Computer Graphics

For each question, indicate whether the statement is true or false by circling T or F, respectively.

Intro to Curves Week 1, Lecture 2

3D Rendering Pipeline (for direct illumination)

521493S Computer Graphics Exercise 2 Solution (Chapters 4-5)

Today. Today. Introduction. Matrices. Matrices. Computergrafik. Transformations & matrices Introduction Matrices

Intro to Curves Week 4, Lecture 7

3-D D Euclidean Space - Vectors

Last week. Machiraju/Zhang/Möller/Fuhrmann

The Importance of Matrices in the DirectX API. by adding support in the programming language for frequently used calculations.

Geometric transformations assign a point to a point, so it is a point valued function of points. Geometric transformation may destroy the equation

CS 130 Final. Fall 2015

GEOMETRIC OBJECTS AND TRANSFORMATIONS I

Graphics Pipeline 2D Geometric Transformations

Overview. By end of the week:

Viewing with Computers (OpenGL)

Vector Algebra Transformations. Lecture 4

Computer Viewing. CS 537 Interactive Computer Graphics Prof. David E. Breen Department of Computer Science

GEOMETRIC TOOLS FOR COMPUTER GRAPHICS

Math background. 2D Geometric Transformations. Implicit representations. Explicit representations. Read: CS 4620 Lecture 6

Input and Interaction. Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media Arts University of New Mexico

Perspective Projection in Homogeneous Coordinates

Computer Graphics I Lecture 11

Specifying Complex Scenes

3D Viewing Episode 2

Computer Graphics. Lecture 2. Doç. Dr. Mehmet Gokturk

Topics. From vertices to fragments

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

CS 130 Exam I. Fall 2015

Homogeneous coordinates, lines, screws and twists

S U N G - E U I YO O N, K A I S T R E N D E R I N G F R E E LY A VA I L A B L E O N T H E I N T E R N E T

CS184: Using Quaternions to Represent Rotation

CS452/552; EE465/505. Clipping & Scan Conversion

Object Representation Affine Transforms. Polygonal Representation. Polygonal Representation. Polygonal Representation of Objects

Computer Graphics with OpenGL ES (J. Han) Chapter IV Spaces and Transforms

XPM 2D Transformations Week 2, Lecture 3

3D Viewing Episode 2

PetShop (BYU Students, SIGGRAPH 2006)

3D Viewing. CS 4620 Lecture Steve Marschner. Cornell CS4620 Spring 2018 Lecture 9

2D transformations: An introduction to the maths behind computer graphics

Geometric Primitives. Chapter 5

Virtual Cameras & Their Matrices

Perspective Mappings. Contents

QUESTION BANK 10CS65 : COMPUTER GRAPHICS AND VISUALIZATION

UNIT 2 2D TRANSFORMATIONS

XPM 2D Transformations Week 2, Lecture 3

CHAPTER 1 Graphics Systems and Models 3

Transforms. COMP 575/770 Spring 2013

Interactive Computer Graphics A TOP-DOWN APPROACH WITH SHADER-BASED OPENGL

Motivation. Parametric Curves (later Surfaces) Outline. Tangents, Normals, Binormals. Arclength. Advanced Computer Graphics (Fall 2010)

METRIC PLANE RECTIFICATION USING SYMMETRIC VANISHING POINTS

3D Mathematics. Co-ordinate systems, 3D primitives and affine transformations

Geometric Transformations

Curves and Surfaces Computer Graphics I Lecture 9

3D GRAPHICS. design. animate. render

3D Viewing. CS 4620 Lecture 8

CS230 : Computer Graphics Lecture 6: Viewing Transformations. Tamar Shinar Computer Science & Engineering UC Riverside

Game Mathematics. (12 Week Lesson Plan)

THE VIEWING TRANSFORMATION

Practical Linear Algebra: A Geometry Toolbox

CS 4620 Midterm 1. Tuesday 22 October minutes

Figure 1. Lecture 1: Three Dimensional graphics: Projections and Transformations

Monday, 12 November 12. Matrices

CS 4204 Computer Graphics

Shadows in Computer Graphics

Matrix Operations with Applications in Computer Graphics

Computer Graphics CS 543 Lecture 13a Curves, Tesselation/Geometry Shaders & Level of Detail

Chapter 2 - Basic Mathematics for 3D Computer Graphics

Supplement to Lecture 16

On the Midterm Exam. Monday, 10/17 in class. Closed book and closed notes. One-side and one page cheat sheet is allowed. A calculator is allowed

Realtime 3D Computer Graphics Virtual Reality

Transcription:

Geometry CS 537 Interactive Computer Graphics Prof. David E. Breen Department of Computer Science E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1

Objectives Introduce the elements of geometry - Scalars - Vectors - Points Develop mathematical operations among them in a coordinate-free manner Define basic primitives - Line segments - Polygons E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 2

Basic Elements Geometry is the study of the relationships among objects in an n-dimensional space - In computer graphics, we are interested in objects that exist in three dimensions Want a minimum set of primitives from which we can build more sophisticated objects We will need three basic elements - Scalars - Vectors - Points E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 3

Coordinate-Free Geometry When we learned simple geometry, most of us started with a Cartesian approach - Points were at locations in space p=(x,y,z) - We derived results by algebraic manipulations involving these coordinates This approach was nonphysical - Physically, points exist regardless of the location of an arbitrary coordinate system - Most geometric results are independent of the coordinate system - Example Euclidean geometry: two triangles are identical if two corresponding sides and the angle between them are identical E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 4

Transformations to Change Coordinate Systems 4 coordinate systems 1 point P M M M 1 2 2 3 3 4 = T (4,2) = T (2,3) S(0.5,0.5) = T (6.7,1.8) R(45 ) 5 1994 Foley/VanDam/Finer/Huges/Phillips ICG

Scalars Need three basic elements in geometry - Scalars, Vectors, Points Scalars can be defined as members of sets which can be combined by two operations (addition and multiplication) obeying some fundamental axioms (associativity, commutivity, inverses) Examples include the real and complex number systems under the ordinary rules with which we are familiar Scalars alone have no geometric properties E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 6

Vectors Physical definition: a vector is a quantity with two attributes - Direction - Magnitude Examples include - Force - Velocity - Directed line segments Most important example for graphics Can map to other types v E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 7

Vector Operations Every vector has an inverse - Same magnitude but points in opposite direction Every vector can be multiplied by a scalar There is a zero vector - Zero magnitude, undefined orientation The sum of any two vectors is a vector - Use head-to-tail axiom v -v αv v u w E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 8

Linear Vector Spaces Mathematical system for manipulating vectors Operations - Scalar-vector multiplication u=αv - Vector-vector addition: w=u+v Expressions such as v=u+2w-3r Make sense in a vector space E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 9

Vectors Lack Position These vectors are identical - Same length and magnitude Vectors spaces insufficient for geometry - Need points E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 0

Points Location in space Operations allowed between points and vectors - Point-point subtraction yields a vector - Equivalent to point-vector addition v=p-q P=v+Q E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 1

Affine Spaces Point + a vector space Operations - Vector-vector addition - Scalar-vector multiplication - Point-vector addition - Scalar-scalar operations For any point define - 1 P = P - 0 P = 0 (zero vector) E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 2

Lines Consider all points of the form - P(α)=P 0 + α d - Set of all points that pass through P 0 in the direction of the vector d E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 3

Parametric Form This form is known as the parametric form of the line - More robust and general than other forms - Extends to curves and surfaces Two-dimensional forms - Explicit: y = mx +h - Implicit: ax + by +c =0 - Parametric: x(α) = αx 0 + (1-α)x 1 y(α) = αy 0 + (1-α)y 1 E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 4

Rays and Line Segments If α >= 0, then P(α) is the ray leaving P 0 in the direction d If we use two points to define v, then P( α) = Q + α (R-Q) = Q+αv = αr + (1-α)Q For 0 <= α < =1 we get all the points on the line segment joining R and Q E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 5

Convexity An object is convex iff for any two points in the object all points on the line segment between these points are also in the object P P Q Q convex E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. not convex 1 6

Affine Sums Consider the sum P=α 1 P 1 +α 2 P 2 +..+α n P n If α 1 +α 2 +..α n =1 in which case we have the affine sum of the points P 1,P 2,..P n If, in addition, α i >=0, we have the convex hull of P 1,P 2,..P n E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 7

Convex Hull Smallest convex object containing P 1,P 2,..P n Formed by shrink wrapping points E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 8

Curves and Surfaces Curves are one parameter entities of the form P(α) where the function is nonlinear Surfaces are formed from two-parameter functions P(α, β) - Linear functions give planes and polygons P(α) P(α, β) E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 1 9

Planes A plane can be defined by a point and two vectors or by three points P v R u R Q P(α,β)=R+αu+βv P(α,β)=R+α(Q-R)+β(P-R) E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 2 0

Triangles convex sum of S(α) and R convex sum of P and Q for 0<=α,β<=1, we get all points in triangle E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 2 1

Barycentric Coordinates Triangle is convex so any point inside can be represented as an affine sum P(α 1, α 2, α 3 )=α 1 P+α 2 Q+α 3 R where α 1 +α 2 +α 3 = 1 α i >=0 The representation is called the barycentric coordinate representation of P E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. 2 2

Normals Every plane has a vector n normal (perpendicular, orthogonal) to it From point-two vector form P(α,β)=R+αu+βv, we know we can use the cross product to find n = u v and the equivalent form (P(α)-P) n=0 v E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012. P u 2 3

Representation E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 2 4

Objectives Introduce concepts such as dimension and basis Introduce coordinate systems for representing vectors spaces and frames for representing affine spaces Discuss change of frames and bases Introduce homogeneous coordinates E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 2 5

Linear Independence A set of vectors v 1, v 2,, v n is linearly independent if α 1 v 1 +α 2 v 2 +.. α n v n =0 iff α 1 =α 2 = =0 If a set of vectors is linearly independent, we cannot represent one in terms of the others If a set of vectors is linearly dependent, at least one can be written in terms of the others E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 2 6

Dimension In a vector space, the maximum number of linearly independent vectors is fixed and is called the dimension of the space In an n-dimensional space, any set of n linearly independent vectors form a basis for the space Given a basis v 1, v 2,., v n, any vector v can be written as v=α 1 v 1 + α 2 v 2 +.+α n v n where the {α i } are unique E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 2 7

Representation Until now we have been able to work with geometric entities without using any frame of reference, such as a coordinate system Need a frame of reference to relate points and objects to our physical world. - For example, where is a point? Can t answer without a reference system - World coordinates - Camera coordinates E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 2 8

Coordinate Systems Consider a basis v 1, v 2,., v n A vector is written v=α 1 v 1 + α 2 v 2 +.+α n v n The list of scalars {α 1, α 2,. α n }is the representation of v with respect to the given basis We can write the representation as a row or column array of scalars a=[α 1 α 2. α n ] T = α α. α E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 1 2 n 2 9

Example v=2v 1 +3v 2-4v 3 a=[2, 3, 4] T Note that this representation is with respect to a particular basis For example, in OpenGL we start by representing vectors using the object basis but later the system needs a representation in terms of the camera or eye basis E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 0

Which is correct? Coordinate Systems v v Both are because vectors have no fixed location E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 1

Frames A coordinate system is insufficient to represent points If we work in an affine space we can add a single point, the origin, to the basis vectors to form a frame v 2 P 0 v 1 v 3 E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 2

Representation in a Frame Frame determined by (P 0, v 1, v 2, v 3 ) Within this frame, every vector can be written as v=α 1 v 1 + α 2 v 2 +.+α n v n Every point can be written as P = P 0 + β 1 v 1 + β 2 v 2 +.+β n v n E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 3

Confusing Points and Vectors Consider the point and the vector P = P 0 + β 1 v 1 + β 2 v 2 +.+β n v n v=α 1 v 1 + α 2 v 2 +.+α n v n They appear to have the similar representations p=[β 1 β 2 β 3 ] v=[α 1 α 2 α 3 ] which confuses the point with the vector A vector has no position v v p Vector can be placed anywhere E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 point: fixed 3 4

A Single Representation If we define 0 P = 0 and 1 P =P then we can write v=α 1 v 1 + α 2 v 2 +α 3 v 3 = [α 1 α 2 α 3 0 ] [v 1 v 2 v 3 P 0 ] T P = P 0 + β 1 v 1 + β 2 v 2 +β 3 v 3 = [β 1 β 2 β 3 1 ] [v 1 v 2 v 3 P 0 ] T Thus we obtain the four-dimensional homogeneous coordinate representation v = [α 1 α 2 α 3 0 ] T p = [β 1 β 2 β 3 1 ] T E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 5

Homogeneous Coordinates The homogeneous coordinates form for a three dimensional point [x y z] is given as p =[x y z w] T =[wx wy wz w] T We return to a three dimensional point (for w 0) by x x /w y y /w z z /w If w=0, the representation is that of a vector Note that homogeneous coordinates replaces points in three dimensions by lines through the origin in four dimensions For w=1, the representation of a point is [x y z 1] E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 6

Homogeneous Coordinates and Computer Graphics Homogeneous coordinates are key to all computer graphics systems - All standard transformations (rotation, translation, scaling) can be implemented with matrix multiplications using 4 x 4 matrices - Hardware pipeline works with 4 dimensional representations - For orthographic viewing, we can maintain w=0 for vectors and w=1 for points - For perspective we need a perspective division E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 7

Change of Coordinate Systems Consider two representations of the same vector with respect to two different bases. The representations are where a=[α 1 α 2 α 3 ] b=[β 1 β 2 β 3 ] v=α 1 v 1 + α 2 v 2 +α 3 v 3 = [α 1 α 2 α 3 ] [v 1 v 2 v 3 ] T =β 1 u 1 + β 2 u 2 +β 3 u 3 = [β 1 β 2 β 3 ] [u 1 u 2 u 3 ] T E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 8

Representing second basis in terms of first Each of the basis vectors, u1,u2, u3, are vectors that can be represented in terms of the first basis v u 1 = γ 11 v 1 +γ 12 v 2 +γ 13 v 3 u 2 = γ 21 v 1 +γ 22 v 2 +γ 23 v 3 u 3 = γ 31 v 1 +γ 32 v 2 +γ 33 v 3 E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 3 9

Matrix Form The coefficients define a 3 x 3 matrix M = γ γ γ and the bases can be related by a=m T b see text for numerical examples 11 21 31 γ γ γ 12 22 32 γ γ γ 13 23 33 E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 4 0

Change of Frames We can apply a similar process in homogeneous coordinates to the representations of both points and vectors u u 2 Consider two frames: v 1 2 (P 0, v 1, v 2, v 3 ) Q 0 (Q 0, u 1, u 2, u 3 ) P 0 v 1 v 3 u 3 Any point or vector can be represented in either frame We can represent Q 0, u 1, u 2, u 3 in terms of P 0, v 1, v 2, v 3 E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 4 1

Representing One Frame in Terms of the Other Extending what we did with change of bases u 1 = γ 11 v 1 +γ 12 v 2 +γ 13 v 3 u 2 = γ 21 v 1 +γ 22 v 2 +γ 23 v 3 u 3 = γ 31 v 1 +γ 32 v 2 +γ 33 v 3 Q 0 = γ 41 v 1 +γ 42 v 2 +γ 43 v 3 +γ 44 P 0 defining a 4 x 4 matrix M = γ γ γ γ 0 0 0 1 E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 11 21 31 41 γ γ γ γ 12 22 32 42 γ γ γ γ 13 23 33 43 4 2

Working with Representations Within the two frames any point or vector has a representation of the same form a=[α 1 α 2 α 3 α 4 ] in the first frame b=[β 1 β 2 β 3 β 4 ] in the second frame where α 4 = β 4 = 1 for points and α 4 = β 4 a=m T b The matrix M is 4 x 4 and specifies an affine transformation in homogeneous coordinates = 0 for vectors and E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 4 3

The World and Camera Frames When we work with representations, we work with n-tuples or arrays of scalars Changes in frame are then defined by 4 x 4 matrices In OpenGL, the base frame that we start with is the world frame Eventually we represent entities in the camera frame by changing the world representation using the model-view matrix Initially these frames are the same (M=I) E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 4 5

4 6 E. Angel and D. Shriener: Interactive Computer Graphics 6E Addison-Wesley 2012 Moving the Camera If objects are on both sides of z=0, we must move camera frame 1 0 0 0 d 1 0 0 0 0 1 0 0 0 0 1 M =