vectors tools for graphics. to review vector arithmetic, and to relate vectors to objects of...

29
Vectors Tools for Graphics

Upload: melissa-harvey

Post on 26-Dec-2015

223 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Vectors Tools for Graphics

Page 2: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

To review vector arithmetic, and to relate vectors to objects of interest in graphics.

To relate geometric concepts to their algebraic representations.

To describe lines and planes parametrically.To distinguish points and vectors properly.To exploit the dot product in graphics topics.To develop tools for working with objects in 3D

space, including the cross product of two vectors.

Vector, Geometry and CG

Page 3: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Computer graphics objects

Objects to be drawn Shape position orientation

fundamental mathematical discipline to aid graphics is vector analysis transformation

Page 4: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Why vector analysis

Page 5: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

2-D and 3-D coordinate systems

Page 6: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Vector Review

The difference between two points is a vector: v = Q - P;

Page 7: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Vector and Point

Turning this around, we also say that a point Q is formed by displacing point P by vector v; we say that v offsets P to form Q. Algebraically, Q is then the sum:

Q = P + v.

The sum of a point and a vector is a point: P + v = Q.

Page 8: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Vector representation

At this point we represent a vector through a list of its components: an n-dimensional vector is given by an n-tuple:

w = (w 1 , w 2 , . . . , w n )

Page 9: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Operation with Vectors

AddScale

Page 10: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Linear Combination of Vectors

a v + b w

Page 11: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Affine combination of vectors

A linear combination of vector is affine combination if

ex: 3 a + 2 b - 4 c

Page 12: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Convex combination of Vectors

Plus one more requirementai >= 0 I = 1…m.3a+.7b1.8a -.8bThe set of coefficients a 1 , a 2 , . . . , a m

is sometimes said to form a partition of unity, suggesting that a unit amount of material is partitioned into pieces.

Page 13: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The Magnitude of a vector

Note that if w is the vector from point A to point B, then |w| will be the distance from A to B

Page 14: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Unit vector

It is often useful to scale a vector so that the result has a length equal to one. This is called normalizing a vector, and the result is known as a unit vector. For example, we form the normalized version of a, denoted , by scaling it with the value 1/|a|:

Ex. a = (3, -4),

Page 15: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The dot product

Page 16: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to
Page 17: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to
Page 18: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The Angle Between Two Vectors.

Page 19: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The Sign of b.c and Perpendicularity.

Page 20: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to
Page 21: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The 2D Perp Vector.

Page 22: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The perp dot product

Page 23: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Orthogonal Projections

Page 24: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Calculate K and M

Page 25: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The distance from C to The Line

the distance from a point C to the line through A in the direction v is:

Page 26: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

The Cross Product of Two Vectors

The cross product (also called the vector product) of two vectors is another vector. It has many useful properties, but the one we use most often is that it is perpendicular to both of the given vectors. The cross product is defined only for three-dimensional vectors.

Page 27: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Properties

Page 28: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Normal

Page 29: Vectors Tools for Graphics.  To review vector arithmetic, and to relate vectors to objects of interest in graphics.  To relate geometric concepts to

Finding the Normal to a Plane