You are on page 1of 71

May 31, 2012 204481 Foundation of Computer Graphics

1
Mathematical Foundation
for Graphics
Abdul Jabbar Lubis, ST, M.Kom
May 31, 2012 204481 Foundation of Computer Graphics
2
Acknowledgement
This lecture note has been summarized from
lecture note on Foundation of Computer
Graphics, Introduction to Computer Graphics
all over the world. I cant remember where
those slide come from. However, Id like to
thank all professors who create such a good
work on those lecture notes. Without those
lectures, this slide cant be finished.
May 31, 2012 204481 Foundation of Computer Graphics
3
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

May 31, 2012 204481 Foundation of Computer Graphics
4
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
May 31, 2012 204481 Foundation of Computer Graphics
5
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
Euclidean geometry: two triangles are identical if two
corresponding sides and the angle between them are
identical
May 31, 2012 204481 Foundation of Computer Graphics
6
Geometry
Geometry provides a mathematical foundation
for much of computer graphics:
Geometric Spaces: Vector, Affine, Euclidean,
Cartesian, Projective
Affine Geometry
Affine Transformations
Perspective
Projective Transformations
Matrix Representation of Transformations
Viewing Transformations
May 31, 2012 204481 Foundation of Computer Graphics
7
Introduction (1/2)
Points are associated with locations of space
Vectors represent displacements between
points or directions
Points, vectors, and operators that combine
them are the common tools for solving many
geometric problems that arise in Geometric
Modeling, Computer Graphics, Animation,
Visualization, and Computational Geometry.
May 31, 2012 204481 Foundation of Computer Graphics
8
Introduction (2/2)
The three most fundamental operators on
vectors are the dot product, the cross
product, and the mixed product (sometimes
called the triple product).
Although a point and a vector may be
represented by its three coordinates, they are
of different type and should not be mixed
Avoid, whenever possible, using coordinates
when formulating geometric constructions.
Instead use vectors and points.

May 31, 2012 204481 Foundation of Computer Graphics
9
What will you learn here? (1/2)
Properties of dot, cross, and mixed products
How to write simple tests for
4-points and 2-lines coplanarity
Intersection of two coplanar edges
Parallelism of two edges or of two lines
Clockwise orientation of a triangle from a
viewpoint
Positive orientation of a tetrahedron
Edge/triangle and ray/triangle intersection
May 31, 2012 204481 Foundation of Computer Graphics
10
What will you learn here? (2/2)
How to compute
Center of mass of a triangle
Volume of a tetrahedron
Shadow (orthogonal projection) of a vector
on a plane
Line/plane intersection
Plane/plane intersection
Plane/plane/plane intersection


May 31, 2012 204481 Foundation of Computer Graphics
11
Terminology
Orthogonal to = Normal to = forms a 90
o
angle
with
Norm of a vector = length of the vector
Are coplanar = there is a plane containing them
May 31, 2012 204481 Foundation of Computer Graphics
12
Notation
means is always equal to or by definition
== means the test is equal to used in Boolean expressions
:= is the assignment is computed as and is used in construction
algorithms

s (italic type) Boolean

v (normal type) scalar
a (bold type lower-case) point
A (bold upper-case) pointset (edge, curve, triangle, surface, solid)

U (bold underscored upper-case) vector
u (bold underscored lower-case) unit vector
T (bold upper-case) transformation
May 31, 2012 204481 Foundation of Computer Graphics
13
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
May 31, 2012 204481 Foundation of Computer Graphics
14
Vectors And Point
We commonly use vectors to represent:
Points in space (i.e., location)
Displacements from point to point
Direction (i.e., orientation)
But we want points and directions to behave
differently
Ex: To translate something means to move it without
changing its orientation
Translation of a point = different point
Translation of a direction = same direction
May 31, 2012 204481 Foundation of Computer Graphics
15
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
May 31, 2012 204481 Foundation of Computer Graphics
16
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
ov
v
u
w
May 31, 2012 204481 Foundation of Computer Graphics
17
Vectors Lack Position
These vectors are identical
Same length and magnitude







Vectors spaces insufficient for geometry
Need points
May 31, 2012 204481 Foundation of Computer Graphics
18
Vectors (1/2)
Vector space (analytic definition from Descartes in the
1600s)
U+V=V+U (vector addition)
U+(V+W)=(U+V)+W
0 is the zero (or null) vector if V, 0+V=V
V is the inverse of V, so that the vector subtraction
VV= 0
s(U+V)=sU+sV (scalar multiplication)
U/s is the scalar division (same as multiplication by
s
1
)
(a+b)V=aV+bV
May 31, 2012 204481 Foundation of Computer Graphics
19
Vectors (2/2)
Vectors are used to represent displacement
between points
Each vector V has a norm (length) denoted ||V||
V / ||V|| is the unit vector (length 1) of V. We denote
it V
u
If ||V||==0, then V is the null vector 0
Unit vectors are used to represent
Basis vectors of a coordinate system
Directions of tangents or normals in definitions of
lines or planes

May 31, 2012 204481 Foundation of Computer Graphics
20
Vector Spaces
A linear combination of vectors results in a new
vector:
v = o
1
v
1
+ o
2
v
2
+ + o
n
v
n
If the only set of scalars such that
o
1
v
1
+ o
2
v
2
+ + o
n
v
n
= 0
is o
1
= o
2
= = o
3
= 0
then we say the vectors are linearly independent
The dimension of a space is the greatest number of
linearly independent vectors possible in a vector set
For a vector space of dimension n, any set of n linearly
independent vectors form a basis
May 31, 2012 204481 Foundation of Computer Graphics
21
Vector Spaces: An Example
Our common notion of vectors in a 2D plane
is (you guessed it) a vector space:
Vectors are arrows rooted at the origin
Scalar multiplication streches the arrow,
changing its length (magnitude) but not its direction
Addition uses the trapezoid rule:

u+v
y
x
u
v
May 31, 2012 204481 Foundation of Computer Graphics
22
Vector Spaces: Basis Vectors
Given a basis for a vector space:
Each vector in the space is a unique linear
combination of the basis vectors
The coordinates of a vector are the scalars from this
linear combination
Best-known example: Cartesian coordinates
Draw example on the board
Note that a given vector v will have different
coordinates for different bases
May 31, 2012 204481 Foundation of Computer Graphics
23
Points
Location in space
Operations allowed between points and vectors
Point-point subtraction yields a vector
Equivalent to point-vector addition
P = v + Q
v = P - Q
May 31, 2012 204481 Foundation of Computer Graphics
24
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)
May 31, 2012 204481 Foundation of Computer Graphics
25
Affine Space (1/2)
Definition: Set of Vectors V and a Set of Points
P
Vectors V form a vector space.
Points can be combined with vectors to make
new points:

P +v =Q with P,Q e P and v e V

Dimension: The dimension of an affine space is
the same as that of V .

May 31, 2012 204481 Foundation of Computer Graphics
26
Affine Space (2/2)
Note:
All other point operations are just variations
on the
P + v operation.
No distinguished origin
No notion of distances or angles.
Most of what we do in graphics is affine.
May 31, 2012 204481 Foundation of Computer Graphics
27
Affine space
Defined together with a vector space and the
point difference mapping
V=ba (vector V is the displacement from point
a to point b)
Notation: ab stands for the vector b a
c a = (c b) + (b a). Written ac = ab + bc
Point b is uniquely defined, given point a and
vector (b a)
May 31, 2012 204481 Foundation of Computer Graphics
28
Affine space
If we pick a as origin, then there is a 1-to-1 mapping
between a point b and the vector b a.
We may extend the vector operations to points, but
usually only when the result is independent of the
choice of the origin!
A + b is not allowed (the result depends on the
origin)
(a + b)/2 is OK
Points may be used to represent
The vertices of a triangle or polyhedron
The origin of a coordinate system
Points in the definition of lines or plane

May 31, 2012 204481 Foundation of Computer Graphics
29
Lines
Consider all points of the form
P(o)=P
0
+ o d
Set of all points that pass through P
0
in the direction
of the vector d
May 31, 2012 204481 Foundation of Computer Graphics
30
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(o) = ox
0
+ (1-o)x
1
y(o) = oy
0
+ (1-o)y
1

May 31, 2012 204481 Foundation of Computer Graphics
31
Rays and Line Segments
If o >= 0, then P(o) is the ray leaving P
0
in the
direction d
If we use two points to define v, then
P( o) = Q + o (R-Q)=Q+ov
=oR + (1-o)Q
For 0<=o<=1 we get all the
points on the line segment
joining R and Q
May 31, 2012 204481 Foundation of Computer Graphics
32
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
Q
Q
P
convex
not convex
May 31, 2012 204481 Foundation of Computer Graphics
33
Affine Sums
Consider the sum
P=o
1
P
1
+o
2
P
2
+..+o
n
P
n
Can show by induction that this sum makes
sense iff
o
1
+o
2
+..o
n
=1
in which case we have the affine sum of the
points P
1
,P
2
,..P
n

If, in addition, o
i
>=0, we have the convex hull of
P
1
,P
2
,..P
n


May 31, 2012 204481 Foundation of Computer Graphics
34
Convex Hull
Smallest convex object containing P
1
,P
2
,..P
n
Formed by shrink wrapping points
May 31, 2012 204481 Foundation of Computer Graphics
35
Curves and Surfaces
Curves are one parameter entities of the form
P(o) where the function is nonlinear
Surfaces are formed from two-parameter
functions P(o, |)
Linear functions give planes and polygons
P(o)
P(o, |)
May 31, 2012 204481 Foundation of Computer Graphics
36
Planes
A plane be determined by a point and two
vectors or by three points
P(o,|)=R+ou+|v
P(o,|)=R+o(Q-R)+|(P-Q)
May 31, 2012 204481 Foundation of Computer Graphics
37
Triangles
convex sum of P and Q
convex sum of S(o) and R
for 0<=o,|<=1, we get all points in triangle
May 31, 2012 204481 Foundation of Computer Graphics
38
Normals
Every plane has a vector n normal (perpendicular,
orthogonal) to it
From point-two vector form P(o,|)=R+ou+|v, we know
we can use the cross product to find n = u v and
the equivalent form
(P(o)-P) n=0

u
v
P
May 31, 2012 204481 Foundation of Computer Graphics
39
Dot Product (1/2)
U-V denotes the dot product (also called the
inner product)
U-V = ||U||||V||cos(angle(U,V))
U-V is a scalar.
U-V==0 ( U==0 or V==0 or (U and V are
orthogonal))
u
v
cos(angle(u,v))
V-U = U-V < 0 here V-U = U-V > 0 here
May 31, 2012 204481 Foundation of Computer Graphics
40
Dot Product (2/2)
U-V is positive if the angle between U and V is
less than 90
o

Note that U-V = V-U, because: cos(a)=cos(a).
u-v = cos(angle(u,v) # unit vectors: ||u|| 1
the dot product of two unit vectors is the cosine of
their angle
V-u

= length of the orthogonal projection of V
onto the direction of u
||U||= sqrt(U-U) = length of U = norm of U

May 31, 2012 204481 Foundation of Computer Graphics
41
Dot Product
The dot product or, more generally, inner
product of two vectors is a scalar:
v
1
v
2
= x
1
x
2
+ y
1
y
2
+ z
1
z
2
(in 3D)
Useful for many purposes
Computing the length of a vector: length(v) = sqrt(v v)
Normalizing a vector, making it unit-length
Computing the angle between two vectors:
u v = |u| |v| cos()
Checking two vectors for orthogonality
Projecting one vector onto another

u
v
May 31, 2012 204481 Foundation of Computer Graphics
42
Given the unit normal n to a mirror surface and
the unit direction l towards the light, compute
the direction r of the reflected light.

Computing the reflection vector
n
l r
By symmetry, l+r is parallel to n and
has a norm that is twice the length of
the projection n-l of l upon n. Hence:
r = 2(n-l)nl
l r
l
May 31, 2012 204481 Foundation of Computer Graphics
43
Computing a shadow vector (projection)
Given the unit up-vector u and the unit
direction d, compute the shadow T of d onto
the floor (orthogonal to u).
T and u are orthogonal.
d is the vector sum T+ (d-u)u .
Hence:
T = d (d-u)u
u
d
T
May 31, 2012 204481 Foundation of Computer Graphics
44
Cross product (1/3)
UV denotes the cross product
UV is either 0 or a vector orthogonal to both U
and V
When U==0 or V==0 or U//V (parallel) then
UV= 0
Otherwise, UV is orthogonal to both U and V
May 31, 2012 204481 Foundation of Computer Graphics
45
Cross product (2/3)
The direction of UV is defined by the thumb of
the right hand
Curling the fingers from U to V
Or standing parallel to U and looking at V, UV goes
left

||UV|| ||U||||V||sin(angle(U,V))
sin(angle(u,v)
2
1(u-v)
2
# unit vectors

(uv== 0) u//v (parallel)
UV VU
Useful identity: U(VW) (U-W)V (U-V)W

May 31, 2012 204481 Foundation of Computer Graphics
46
Cross Product (3/3)
The cross product or vector product of two
vectors is a vector:




The cross product of two vectors is orthogonal
to both
Right-hand rule dictates direction of cross
product

(
(
(



=
1 2 2 1
1 2 2 1
1 2 2 1
2 1 ) (
y x y x
z x z x
z y z y
v v
May 31, 2012 204481 Foundation of Computer Graphics
47
When are two edges parallel in 3D?
Edge(a,b) is parallel to Edge(c,d) if abcd == 0

May 31, 2012 204481 Foundation of Computer Graphics
48
Mixed product
U-(VW) is called a mixed product
U-(VW) is a scalar
U-(VW) ==0 when one of the vectors is null or all 3
are coplanar
U-(VW) is the determinant | U V W |
U-(VW) V-(WU) U-(WV) # cyclic
permutation


May 31, 2012 204481 Foundation of Computer Graphics
49
Testing whether a triangle is front-facing
When does the triangle a, b, c appear
clockwise from d?
when da-(dbdc) > 0

a
b
c
d
May 31, 2012 204481 Foundation of Computer Graphics
50
Volume of a tetrahedron
Volume of a tetrahedron with vertices a, b, c and d is


v | da-(dbdc) | / 6
d b
c
dc
db
dbdc
a
da
May 31, 2012 204481 Foundation of Computer Graphics
51
z, s, and v functions (1/2)
zero: z(a,b,c,d) da-(dbdc)==0 # tests co-planarity of 4 points
Returns Boolean TRUE when a,b,c,d are coplanar
sign: s(a,b,c,d) da-(dbdc)>0 # test orientation or side
Returns Boolean TRUE when a,b,c appear clockwise from d
Used to test whether d in on the good side of plane through a,b,c
d b
c
dc
db
dbdc
a
da
c
a
b
d
May 31, 2012 204481 Foundation of Computer Graphics
52
z, s, and v functions (2/2)
value: v(a,b,c,d) da-(dbdc) # compute volume
Returns scalar whose absolute value is 6 times the volume of
tetrahedron a,b,c,d
v(a,b,c,d) v(d,a,b,c) v(b,a,c,d)





May 31, 2012 204481 Foundation of Computer Graphics
53
Testing whether an edge is concave
How to test whether the edge (c,b) shared by triangles
(a,b,c) and (c,b,d) is concave?
May 31, 2012 204481 Foundation of Computer Graphics
54
When do two edges intersect in 2D?
Write a geometric expression that returns true when
two coplanar edges (a,b) and (c,d) intersect


a b
d
c
0 > (abac)(abad) and 0 > (cdca)(cdcb)
d
c
a b
May 31, 2012 204481 Foundation of Computer Graphics
55
When do two edges intersect in 3D?
Consider two edges: edge(a,b) and edge(c,d)
When are they co-planar?

When do they intersect?




a b
d
c
q
p
When z(a,b,c,d)
When they are co-planar and
0 > (abac)(abad) and 0 > (cdca)(cdcb)
a b
d
c
May 31, 2012 204481 Foundation of Computer Graphics
56
What is the common normal to 2 edges in 3D?
Consider two edges: edge(a,b) and edge(c,d)

What is their common normal n?




a b
d
c
n
n=(abcd)
u

May 31, 2012 204481 Foundation of Computer Graphics
57
When is a point inside a tetrahedron?
When does point p lie inside tetrahedron a, b, c, d ?
Assume z(a,b,c,d) is FALSE (not coplanar)








When is p on the boundary of the tetrahedron?
Do as an exercise for practice.
b a
c
p
d
When
s(a,b,c,d),
s(p,b,c,d),
s(a,p,c,d),
s(a,b,p,d), and
s(a,b,c,p)
are identical.
(i.e. all return TRUE or all
return FALSE)
May 31, 2012 204481 Foundation of Computer Graphics
58
A faster point-in-tetrahedron test ?
Suggested by Nguyen Truong
Write ap = sab+tac+uad
Solve for s, t, u (linear system of 3 equations)
Requires 17 multiplications, 3 divisions, and 11 additions
Check that s, t, and u are positive and that s+u+t<1
A more expensive Variation:
Compute s, t, u, w
w = v(a,b,c,d)
s = v(a,p,c,d)
u = v(a,b,p,d)
t = v(a,b,c,p)
Check that
w, s, t, u have the same sign and that s+u+t<w
b a
c
p
d
May 31, 2012 204481 Foundation of Computer Graphics
59
When is a 3D point inside a triangle
When does point p lie inside triangle with vertices a, b, c ?

a
b
c
p
p
When z(p,a,b,c) and (abap)(bcbp)>0 and (bcbp)(cacp)>0
May 31, 2012 204481 Foundation of Computer Graphics
60
Parametric representation of a line
Let Line(p,t) be the line through
point p with tangent t
Its parametric form associates a
scalar s with a point q(s) on the
line
s defines the distance from p
to q(s)
q(s) = p + st
Note that the direction of t
gives an orientation to the line
(direction where s is positive)
We can represent a line by p and t

p
q
t
s
May 31, 2012 204481 Foundation of Computer Graphics
61
Implicit representation of a plane
Let Plane(r,n) be the plane through point r with normal n
Its implicit form states that a point q lies on Plane(r,n) when
rq-n=0
Remember that rq = q r
Note that the direction of n defines an orientation of the plane

p
n
r
q
n
r
p not in plane
May 31, 2012 204481 Foundation of Computer Graphics
62
Line/plane intersection
Compute the point q of intersection between Line(p,t) and
Plane(r,n)
Replacing q by p+st in (qr)-n=0 yields
(pr+st)-n=0
Solving for s yields
rp-n+st-n=0 and
s = rp-n / t-n
s = pr-n / t-n
Hence q = p + (pr-n)t / (t-n)
p
q
t
n
r
s
May 31, 2012 204481 Foundation of Computer Graphics
63
When are two lines coplanar in 3D?
L(p,t) and L(q,u) are coplanar

When tu == 0 OR pq(tu) == 0
May 31, 2012 204481 Foundation of Computer Graphics
64
What is the intersection of two planes
Consider two planes Plane(p,n) and Plane(q,m)
Assume that n and m are not parallel (i.e. nm 0)
Their intersection is a line Line(r,t).
How can one compute r and t ?

t := (nm)
u
let u := nt
r := p+(pqm)u/(um)
q
p
n
m
r
u
t
If correct, then provide the derivation.
Otherwise, provided the correct answer.
May 31, 2012 204481 Foundation of Computer Graphics
65
What is the intersection of three planes
Consider planes Plane(p,m), Plane(q,n), and
Plane(r,m).
How do you compute their intersection w ?

q
p
n
m
r
t
w
Write w=p+an+bm+ct then
solve the linear system
{pwn=0, qwm=0, rwt=0}
for a, b, and c
or compute the line of
intersection between two of
these planes and then intersect
it with the third one.
May 31, 2012 204481 Foundation of Computer Graphics
66
Implementation
Points and vectors are each represented by their 3
coordinates
p=(p
x
,p
y
,p
z
) and v=(v
x
,v
y
,v
z
)
UV = U
x
V
x
+ U
y
V
y
+ U
z
V
z
UV = (U
y
V
z
U
z
V
y
) (U
x
V
z
U
z
V
x
) +

(U
x
V
y
U
y
V
x
)

Implement:
Points and vectors
Dot, cross, and mixed products
z, s, and v functions from mixed products
Edge/triangle intersection
Lines and Planes
Line/Plane, Plane/Plane, and Plane/Plane/Plane intersections
Return exception for singular cases (parallelism)
May 31, 2012 204481 Foundation of Computer Graphics
67
Linear Transformations
A linear transformation:
Maps one vector to another
Preserves linear combinations
Thus behavior of linear transformation is
completely determined by what it does to a
basis
Turns out any linear transform can be
represented by a matrix
May 31, 2012 204481 Foundation of Computer Graphics
68
Matrices
By convention, matrix element M
rc
is located
at row r and column c:





By (OpenGL) convention,
vectors are columns:
(
(
(
(

=
mn m2 m1
2n 22 21
1n 12 11
M M M
M M M
M M M
M

(
(
(

=
3
2
v
v
v
v
1
May 31, 2012 204481 Foundation of Computer Graphics
69
Matrices
Matrix-vector multiplication applies a linear
transformation to a vector:




Recall how to do matrix multiplication
(
(
(

(
(
(

= -
z
y
x
v
v
v
M M M
M M M
M M M
v M
33 32 31
23 22 21
13 12 11
May 31, 2012 204481 Foundation of Computer Graphics
70
Matrix Transformations
A sequence or composition of linear
transformations corresponds to the product of
the corresponding matrices
Note: the matrices to the right affect vector first
Note: order of matrices matters!
The identity matrix I has no effect in
multiplication
Some (not all) matrices have an inverse:
( ) ( ) v v M M =
1
May 31, 2012 204481 Foundation of Computer Graphics
71
Source :
Pradondet Nilagupta
Dept. of Computer Engineering
Kasetsart University

You might also like