Understanding Rotations
|
|
|
- Garey Russell
- 10 years ago
- Views:
Transcription
1 Understanding Rotations Jim Van Verth Senior Engine Programmer, Insomniac Games Introductions. Name a little misleading, as truly understanding rotations would require a deep understanding of group theory, which I honestly neither have, nor have time to present. So a better name might be
2 Understanding Rotation Formats Jim Van Verth Senior Engine Programmer, Insomniac Games Which isn t say I won t be covering other aspects of rotation, it s just that that will be the primary focus of this talk.
3 Intro Discuss various rotation reps Angle (2D), Euler angles/axis-angle (3D) Matrix (2D & 3D) Complex numbers (2D), Quaternion (3D) The order here is an attempt to compare similar formats across 2D and 3D.
4 Intro Issues to consider # elements Concatenation Interpolation Rotation
5 Intro Interpolating not as simple as position, but more important E.g. camera control Store orientations for camera, interpolate E.g. character animation Body location stored as point Joints stored as rotations
6 Intro Orientation relative to reference frame On the previous slide, I mentioned orientation and rotation. Throughout the talk I may use them interchangeably, and I want to make sure that the distinction between them is clear. Orientation refers to where the axes of the reference frame (or coordinate system) lie.
7 Intro Orientation relative to reference frame Those axes are relative to a fixed reference frame, marked in green in this diagram.
8 Intro Orientation relative to reference frame Rotation changes object from one orientation to another Rotation is the operation that takes us from one orientation to another one, represented here by the black arrow.
9 Intro Orientation relative to reference frame Rotation changes object from one orientation to another Hence, represent orientation as a rotation So, it is possible to represent orientation as a rotation from the reference frame, which is what we usually do.
10 Ideal Rotation Format Represent degrees of freedom with minimum number of values Allow concatenations of rotations Math should be simple and efficient concatenation interpolation rotation So what do we look for in an ideal rotation format?
11 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D)
12 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D)
13 2D Angle θ θ The simplest rotation format is just the angle between the original coordinate axes and the new ones. It s the same for x and y axes, so
14 2D Angle θ To simplify things I ll just use the angle between the old and new x axes.
15 2D Angle θ This angle can also be negative, btw.
16 2D Angle: Concatenation φ θ Concatenation is very simple. If we rotate by an angle theta and then an angle phi
17 2D Angle: Concatenation φ θ+φ θ We can represent this by a single angle theta plus phi
18 2D Angle: Concatenation θ φ+θ φ Note: 2D rotation is commutative Note that because addition is commutative, this concatenation is commutative, so rotating by phi first and then theta we get the same result.
19 2D Angle: Concatenation θ+φ And so we have the final rotation.
20 2D Angle: Interpolation φ θ Blending between angles is just about as simple, but there are some gotchas to be aware of. So suppose we have a rotation theta and a rotation phi (a different phi than the previous one, in this case)
21 2D Angle: Interpolation φ Q(θ,φ,t) =? θ And we want to find a rotation between them, using an interpolation factor t that varies from 0 to 1.
22 2D Angle: Interpolation φ θ Q(θ,φ,t) = (1-t)θ+tφ This is pretty simple, we can just do a linear interpolation between theta and phi. This formula should seem familiar after Squirrel s talk.
23 2D Angle: Interpolation What if θ= 30 & φ = 390? Expect always same angle But (1-t)θ+tφ will vary from 30 to 390 However, as mentioned, there are gotchas. Suppose we have angles of 30 degrees and 390 degrees. These are the same rotation, but if we do a straight linear interpolation, we ll end up with angles between 30 and 390, when we d expect to not rotate at all.
24 2D Angle: Interpolation Problem One: angles not well-formed Infinite # of values can represent one rotation: 30º = 390º = -330º Can constrain to [0,360) or [0, 2π) So that s one problem with angles: you can have an infinite number of values that represent one rotation. The simplest solution here is to just constrain the angles to a range, 0 to 360 or 0 to 2 pi if you re using radians.
25 2D Angle: Rotation Idea: vector/point coordinates relative to coordinate frame Change in frame gives change of coordinates How about rotation. Here things get a little more complicated, but not too bad. As the slide says, the coordinates that we use for both vectors and points are relative to the coordinate frame we re using. So if we track how the frame changes, we can compute the new coordinates. It s all part of the magic of vector spaces or affine spaces in this case.
26 2D Angle: Rotation θ θ So, returning to our original diagram, with both angles in this case.
27 2D Angle: Rotation sin" cos" θ θ sin" cos" The original axes have coordinates (1,0) for the x axes and (0,1) for the y axes. Their length is one, so by trigonometry, we can easily compute the coordinates of the new axes relative to the new ones, namely (show) cos theta here and sin theta here. And the same for the y axes.
28 2D Angle: Rotation ("sin#,cos#) cos" sin" θ (0,1) θ cos" (cos",sin") sin" (1,0) So our new coordinates are cos theta, sin theta for the x axis and -sin theta cos theta for the y-axis.
29 2D Angle: Rotation ("sin#,cos#) (0,1) θ (cos",sin") θ (1,0) Simplifying, just to make it a little more clear.
30 2D Angle: Rotation Point in old frame (x, y) = x(1,0) + y(0,1) Point in new frame R(x, y,") = x(cos",sin") + y(#sin",cos") = (x cos",x sin") + (#y sin",y cos") = (x cos" # y sin", x sin" + y cos") So as I mentioned, the coordinates that we use are relative to our current frame. So for a point x, y, this just means that we take x and multiply it by (1,0) and take y and multiply it by (0,1). That gives us x,y as we expect. For the new frame, we just take our original x, y and multiply by the new axes. So that s x times cos theta, sin theta, and y times -sin theta cos theta, which simplifies to this final result for our rotation equation.
31 2D Angle: Rotation So rotation of vector (x,y) R(x, y,") = (x cos" # y sin", x sin" + y cos") Problem two: have to calc sin and cos to rotate So we derived our rotation formula, but as we can see, in order to compute this we ll have to compute a sin and cos, which is not always the fastest operation.
32 2D Angle: Summary Compact (1 value) Concat easy (add) Interpolation doable Rotation not ideal Be careful of infinite values
33 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D) So that s angles in 2D. Now we re going to look at formats that use angles for 3D rotation. We ll begin with Euler angles.
34 Euler Angles Three ordered rotations around orthogonal axes z Could be world or local axes Order important 3D non-commutative x o y Demo Euler angles are just like single 2D angle, except that instead of rotating around a single (implied) axis, we re rotating around 3 different axes. This follows from Euler s theorem that all 3D rotations can be represented by three ordered rotations, hence the name.
35 Euler Angles vs. Fixed Angles Euler angle - rotates around local axes Fixed angle - rotates around world axes Rotations are reversed x-y-z Euler angles == z-y-x fixed angles Often there are differences in terminology for these -- some people like to refer to Euler angles as those rotate only around the local axes of the object, while they refer to rotations around the world axes as fixed angles. They behave similarly - - to get from one to the other you just reverse the rotation order. But often times you ll just see both kinds referred to as Euler angles, so just be aware of which axes you re rotating around.
36 Euler Angle Issues No easy concatenation of rotations Still has interpolation problems Can lead to gimbal lock Euler angles, despite being compact, have some serious problems that make it undesirable as a general rotation format. First, our easy addition of angles goes out the window with Euler angles. Secondly, our interpolation problems are even worse. Finally, when axes align after a series of rotations, we can end up with something called gimbal lock, where we lose one degree of freedom. Let s look at these problems in turn.
37 Euler Angle Concatenation Can't just add or multiply components Best way: Convert to matrices Multiply matrices Extract euler angles from resulting matrix Not cheap
38 Euler Angle Interpolation Example: Halfway between (0, 90, 0) & (90, 45, 90) Lerp directly, get (45, 67.5, 45) Desired result is (90, 22.5, 90) Can use Hermite curves to interpolate Assumes you have correct tangents AFAIK, slerp not even possible
39 Gimbal Lock Euler/fixed angles even less well-formed Different values can give same rotation Example with z-y-x fixed angles: ( 90, 90, 90 ) = ( 0, 90, 0 ) Why? Rotation of 90 around y aligns x and z axes Rotation around z cancels x rotation Demo
40 Euler Angles Good for interface Not so good for in-engine So in summary: Euler angles -- avoid them
41 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D) So let s look at another 3D angle format and see if that works better for us: axis-angle.
42 Axis and Angle Specify vector, rotate ccw around it Can interpolate, messy to concatenate ˆ r θ Euler also proved that any 3D rotation can be represented as a rotation around an arbitrary axis. So axis-angle is just as it sounds -- we specify an axis and how much we re going to rotate around it, in a counterclockwise direction (right-hand rule). I m not going to spend a lot of time on axis-angle as it has it s own brand of problems. Interpolation is pretty simple - - you can just blend the axis and angle separately and get a reasonable result. However, concatenation is much the same as Euler angles -- you have to convert to a matrix (or another format, which we ll get to) -- concatenate, then convert back. In my opinion, it s just not worth it.
43 Axis and Angle Rotation R(p,ˆ r,") = cos"# p + (1$ cos")(p ˆ r )ˆ r + sin"(ˆ r % p) However, it is convenient at times to be able to rotate something by an axis-angle representation, so here s the formula for that. As you can see, this is not the simplest operation either.
44 Axis and Angle More of a transitional format I.e. convert to axis-angle, manipulate angle or axis, convert back We ll see an example of this with 3D matrices in a bit.
45 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D) Ok, now we re going to bounce back to 2D and consider a much nicer and (hopefully) familiar format, the matrix.
46 2D Matrix Recall ("sin#,cos#) (0,1) θ (cos",sin") θ (1,0) So going back to our original axis diagram, recall that our original axes change coordinates to these value.
47 2D Matrix Idea: Bake new frame in matrix and multiply by vector to rotate Matrix represents transformation The idea of a matrix is simple: we bake this new frame in the matrix, and then matrix multiplication will do the coordinate transformation for us. By the way, if you understand this -- and I am going to go a bit fast on this, so I apologize -- but if you understand it, you can handle any transformation you need to compute. If you want one area of linear algebra to study that will help you be successful in computer graphics or even physics, this is it.
48 2D: Matrix Change in frame (1,0) " (cos#,sin#) (0,1) " (#sin$,cos$) Rotation matrix $ cos" sin" ' & ) %#sin" cos" ( (assumes row vectors) So in the standard case, where we re working with Euclidean frames, we don t need to do anything special, just drop the new frame in. Assuming that we re using row vectors, that is, our multiplication order is from left to right, then we re going to insert our new frame in as the rows of the rotation matrix.
49 2D: Matrix Change in frame (1,0) " (cos#,sin#) (0,1) " (#sin$,cos$) Rotation matrix $ cos" sin" ' & ) %#sin" cos" ( (assumes row vectors) Just to make it more clear, our first row is the same as our new x-axis
50 2D: Matrix Change in frame (1,0) " (cos#,sin#) (0,1) " (#sin$,cos$) Rotation matrix $ cos" sin" ' & ) %#sin" cos" ( (assumes row vectors) And the second row is the same as the new y-axis.
51 2D Matrix: Rotation $ cos" sin" ' [ x y] & ) = x cos" # y sin" x sin" + y cos" %#sin" cos" ( [ ] And multiplying it out, we get the same result as before from our angle formula.
52 2D Matrix: Concatenation $ cos" & %#sin" sin" ' $ cos* sin* ' )& ) = cos" (%#sin* cos* ( $ cos(" + *) sin(" + *)' & ) %#sin(" + *) cos(" + *)( Concatenation also uses multiplication, but this time we re multiplying two rotation matrices together. After multiplying and using some trigonometric identities to simply, we can see that we get the result we expect: the angle in the new matrix is just the sum of the original two angles. Note again that the multiplication order doesn t matter here because we re doing 2D rotation. That won t be the case when we get to 3D.
53 2D Matrix: Interpolation Lerp values: " % " $ ' (1 % " 0.5 (0.5% $ ' = $ ' # 0 1& # 1 0 & # & Result isn t a rotation matrix Need Gram-Schmidt orthonormalization So rotating a vector and concatenating rotations are fairly nice. What about interpolation. Well, here things start to fall apart. If we take these two rotation matrices: one with no rotation and the other a rotation of negative 90 degrees, and try to do a linear interpolation between them, we get a bad result. The resulting row vectors are not unit length, so this is not a rotation matrix. Now, we can do Gram-Schmidt orthonormalization to solve this problem, but it doesn t solve all of our problems.
54 2D: Matrix Lerp values: # "1 & # % ( & # % ( = 0 0 & % ( $ 1 0 ' $ "1 0' $ 0 0' Not even a valid affine transformation For example, interpolating from a rotation of negative 90 degrees to a rotation of positive 90 degrees, gives us an extremely bad matrix. So what can we do about this?
55 2D Matrix: Interpolation Example Let s take a look at what s going on here, by examining where the axis vectors go. So here are the frames for two possible rotations, the red being about a rotation of -45 degrees, the blue being a rotation of about positive 90 degrees.
56 2D Matrix: Interpolation Example And suppose we want to interpolate between them.
57 2D Matrix: Interpolation Look at just x-axis To simplify things, let s just look at the x-axis.
58 2D Matrix: Interpolation Lerp If we linearly interpolate between the two x-axes, that s basically just drawing a line from vector tip to vector tip
59 2D Matrix: Interpolation Lerp And picking points along the line. Here I ve spaced them out at t values of 1/4, 1/2, and 3/4. Note that they are clearly shorter than our original vectors, so they re no longer unit length. Now, we could do our orthonormalization process, which would make these vectors unit length again.
60 2D Matrix: Interpolation Lerp, extended to unit length And here we see the result of that. However, now we have another problem.
61 2D Matrix: Interpolation But equal time = equal spacing Note that along the line, the vectors are equally spaced, but along the rotation arc they re not. What we d really like is that as we move in time, using our interpolant t, that our rotation would move equally as well.
62 2D Matrix: Interpolation Subdivide arc, not line Spherical linear interpolation, or slerp So here s a diagram showing that -- note that now the arc of rotation is now subdivided equally. This is called spherical linear interpolation, or (as Ken Shoemake says, because it s fun): slerp.
63 2D Matrix: Interpolation Idea: compare position operations to orientation Be careful of order (important for 3D) x + y " xy x # y " xy #1 ax " x a So how can we compute slerp? One way to think about this -- and for any mathematicians in the audience this is admittedly not a formal proof, but perfectly appropriate -- we can take the operations we use for linear interpolation and take them up one level to get the appropriate operations for rotation matrices. Then we can use this to convert our linear interpolation formula to a spherical linear interpolation formula. So where we would add two angles, we multiply two matrices. Where we would subtract one angle from another, we multiply by the matrix inverse. And where we would scale an angle, we instead take the rotation matrix to the same power.
64 2D Matrix: Interpolation Apply to lerp (x 1 " x 0 )t + x 0 Gives slerp formula x + y " xy x # y " xy #1 ax " x a (M 1 M 0 "1 ) t M 0 Apply this to our lerp formula, we get the following slerp formula. And as I mentioned on the previous slide, this order is important -- while any order is reasonable for 2D rotations because (all together now) they re commutative, this is not the same for 3D rotations. However, both of these slides do bring up a question.
65 2D Matrix: Interpolation But what is? General: Taylor series 2D rotation simpler: M t (M " ) t = M t" (M 1 M 0 "1 ) t M 0 What is M to the t? For general matrices, this is just a function, and you can compute an approximation by using a Taylor series expansion (Gino will say more about Taylor series in the next talk). However, in our case we re only considering rotation matrices, so the answer is much simpler. All you need to do is pull the angle out of the matrix, multiply it by t, and generate a new matrix for that angle.
66 2D Matrix: Interpolation Process: Compute Then Finally M = M 1 M 0 "1 " = atan2(m 0,1,M 0,0 ) M t" M 0 (M 1 M 0 "1 ) t M 0 So the process is just this. Note that M0,1 is sin theta, and m0,0 is cos theta, so we can take the arc tangent to get the correct angle.
67 2D Matrix: Interpolation An alternative (only for 2D): Lerp the first row Renormalize Rotate 90 degrees to get the second row Build new matrix But need to correct for time (discuss later)
68 2D Matrix: Interpolation Blend multiple matrices, e.g. skinning Maya gives you weights, just lerp Can use De Castlejau s Algorithm w/slerp Alternative: dual quaternions
69 2D Matrix: Recap Rotation: fast Concatenation: fast Lerp/slerp: unwieldy Also: 4 values to represent 1 d.o.f.
70 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D)
71 3D: Matrix Much the same as 2D matrix Map transformed axes, store as rows of matrix Rotate via vector-matrix mult Concatenate via matrix-matrix multiplication (but no longer commutative)
72 3D Matrix: Interpolation Lerp same problems as before 9 values to interpolate don t interpolate well Slerp even harder to compute (M ( ˆ r," ) ) t = M ( ˆ r,t" )
73 3D Matrix: Summary Workhorse of 3D graphics Great for rotation and concatentation (especially w/vector processors) Inconvenient for interpolation
74 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D)
75 2D: Complex Numbers Review: where a + bi i = "1 But ignore that imaginary crap
76 2D: Complex Numbers First important bit Imaginary a + bi b a Real
77 2D: Complex Numbers Second important bit (a + bi)(c + di) = (ac " bd) + (bc + ad)i Another way to think of it (a,b)" (c,d) = (ac # bd,bc + ad)
78 2D: Complex Numbers Suppose: restrict to unit length Imaginary cos" + sin"i sin" " Also written as cos" Real cos" + isin" = e i"
79 2D: Complex Numbers Multiply general complex number by unit one (x + yi)(cos" + sin"i) = (x cos" # y sin") + (x sin" + y cos")i Look familiar? Gives us rotation
80 2D: Complex Numbers Concatenation (cos" + sin"i)(cos# + sin#i) = (cos(" + #)) + (sin(" + #))i
81 2D: Complex Interpolation Lerp similar, but can normalize (nlerp) Lerping our complex numbers is much like matrixes, except in this case each arrow represents an entire complex number instead of just the x-axis of a matrix. So rather than doing the full orthonormalization process we can just perform our linear interpolation and then just do one normalization operation. This is often called nlerp. That said, the same problems still remain with non-equal subdivision of our rotation arc, so let s look at slerp again.
82 2D: Complex Interpolation Slerp Want to find q t q 1 q t α αt q 0 In generating a formula for slerp with complex numbers we can take a different approach than with matrices. Suppose we have two complex numbers q0 and q1 and we want to blend between them. The angle between them is alpha, and we want to find the complex number that s alpha t between the two.
83 2D: Complex Interpolation Slerp Create basis q " 1 q 1 q t α αt q 0 Suppose we can find a perpendicular to q0 based on q1 -- we ll just call that q1. That gives us a coordinate frame..
84 2D: Complex Interpolation Slerp Generate coords q " 1 q 1 q t αt sin"t cos"t q 0 And we can use this frame to generate coordinates for our new q_t. As before, the distance along the q0 axis is just cos alpha t, and the distance along the q1 axis is sin alpha t.
85 Complex Number Interpolation Slerp Then q " 1 q 1 q t = cos"tq 0 + sin"t q # 1 αt q t sin"t cos"t q 0 So for an arbitrary q0 and q1, our slerped complex number is this.
86 2D: Complex Interpolation Finding q " 1 In 2D can do q 0 " q " 1 q 1 q t α αt q 0 That leaves one open question: how to we compute this q1? Well, in 2D we can just rotate q0 90 degrees to get the perpendicular.
87 2D: Complex Interpolation Finding q " 1 In general, q " 1 = q # (q q )q q 1 # (q 0 q 1 )q 0 Simplifies to q " 1 q 1 α q t αt q " 1 = q # cos$q 1 0 sin 2 $ q 0 But let s consider the general case -- this will be useful when we get to quaternions. We can compute this by projecting q1 onto q0, subtracting the result from q1, and then normalizing. This is just one step in Gramm-Schmidt orthonormalization. For the case of our unit complex numbers (or any unit vector, for that matter), this just simplifies to this.
88 2D: Complex Interpolation Slerp Combine q t = cos"tq 0 + sin"t # q 1 q " 1 q 1 q t Get q " 1 = q # cos$q 1 0 sin 2 $ α αt q t = sin(1 " t)# q sin# 0 + sint# sin# q 1 q 0 Combining our two formulas together we get the following,
89 2D: Complex Interpolation Slerp Combine q t = cos"tq 0 + sin"t # q 1 q " 1 q 1 q t Get q " 1 = q # cos$q 1 0 sin 2 $ α αt q t = sin(1 " t)# q sin# 0 + sint# sin# q 1 q 0 which is our final slerp formula.
90 2D: Complex Interpolation Slerp Combine q t = cos"tq 0 + sin"t # q 1 q " 1 q 1 q t Get q " 1 = q # cos$q 1 0 sin 2 $ α αt q t = sin(1 " t)# q sin# 0 + sint# sin# q 1 q 0 Same as: q t = q 0 (q 0 "1 q 1 ) t Btw, it can be shown that this gives the same result as our other slerp formula. However, this one is more practical to compute.
91 2D Complex Interpolation Slerp not ideal q t = sin(1" t)# q sin# 0 + sint# sin# q 1 Computing α, sin α, sin α t slow Numeric error as α 0 Also, depending on how we calculate alpha, this can be noncommutative as well, I.e. slerping from q0 to q1 is not the same as slerping from q1 to q0 -- you end up going different ways around the circle. That said, most implementations assume that alpha is greater than 0, which will make it commutative.
92 Faster Slerp Lerp is pretty close to slerp Just varies in speed at middle Idea: can correct using simple spline to modify t (adjust speed) From Jon Blow s column, Game Developer, March 2002 Lerp speed w/slerp precision Demo
93 Faster Slerp In practice, we have small angles nlerp alone may well be good enough
94 Complex Numbers Note: complex multiplication is commutative, as is 2D rotation
95 Complex Numbers Half-angle form q = (cos(" /2) + sin(" /2)i) Then rotation could be Rot(p,") = qpq Still unit length
96 Complex Numbers: Half Angle Oddity: negatives apply same rotation Imaginary cos" /2 + sin" /2i " /2 "cos# /2 " sin# /2i Real
97 Complex Numbers: Half Angle Semi-circle rep. all rotations Imaginary cos" /2 + sin" /2i " /2 "cos# /2 " sin# /2i Real
98 Complex Numbers: Summary In practice not used all that often Not sure why -- probably because angles are simple enough
99 Topics Angle (2D) Euler Angles (3D) Axis-Angle (3D) Matrix (2D) Matrix (3D) Complex number (2D) Quaternion (3D)
100 What is a Quaternion? Created as extension to complex numbers becomes Can rep as coordinates Or scalar/vector pair
101 What is Rotation Quaternion? Unit quat is rotation representation also avoids f.p. drift
102 Why 4 values? One way to think of it: 2D rotation -> One degree of freedom Unit complex number -> One degree of freedom 3D rotation -> Three degrees of freedom Unit quaternion -> Three degrees of freedom
103 What is Rotation Quaternion? Unit quat (w, x, y, z) w represents angle of rotation θ w = cos(θ/2) x, y, z from normalized rotation axis ^r ^ (x y z) = v = sin(θ/2) r Often write as (w,v) In other words, modified axis-angle
104 Creating Rotation Quaternion So for example, if want to rotate 90 around z-axis:
105 Creating Rotation Quaternion Another example Have vector v 1, want to rotate to v 2 Need rotation vector ^r, angle θ r Plug into previous formula θ v 1 v 2 That s gives a particular solution. But suppose we want to generate a quaternion a little more programmatically. A case that comes up often is that we have a vector pointing in one direction, and we want to generate a quaternion that will rotate it to a new direction. One way we might think of doing this is just take the cross product to get our axis of rotation r, then take the dot product of the normalized vectors, and take the arccos of that to get the angle, and plug the result into the quaternion.
106 Creating Rotation Quaternion From Game Gems 1 (Stan Melax) Use trig identities to avoid arccos Normalize v 1, v 2 Build quat More stable when v 1, v 2 near parallel In most cases that will work, but there are some problems when v1 and v2 are pointing pretty much the same direction. Stan Melax has a great solution for this, which is to normalize v1 and v2, compute these quantities r and s, and then plug into the quaternion as follows.
107 Multiplication More complex (har) than complex Take q 0 = (w 0, v 0 ) q 1 = (w 1, v 1 ) Non-commutative: So that provides a way to create a quaternion. Suppose we want to concatenate them. As with matrices and complex numbers, multiplication does the trick. However, in this case the multiplication operator is a little more complicated. Still, it s all simple vector math, so it isn t too bad. Note again that due to the cross product this is non-commutative.
108 Identity and Inverse Identity quaternion is (1, 0, 0, 0) applies no rotation remains at reference orientation q -1 is inverse q. q -1 gives identity quaternion Inverse is same axis but opposite angle
109 Computing Inverse (w, v) -1 = ( cos(θ/2), sin(θ/2). ^r ) Only true if q is unit ^ i.e. r is a unit vector
110 Vector Rotation Have vector p, quaternion q Treat p as quaternion (0, p) Rotation of p by q is q p q -1 Vector p and unit quat (w, v) boils down to Possible to show that this formula is the same as the rotation formula for axis and angle.
111 Vector Rotation (cont d) Why does q p q -1 work? Similar to complex w/half angle: first multiply rotates halfway and into 4th dimension second multiply rotates rest of the way, back into 3rd See references for more details
112 Vector Rotation (cont d) Can concatenate rotation q 1 (q 0 p q 0-1 ) q 1-1 = (q 1 q 0 ) p (q 1 q 0 ) -1 Note multiplication order: right-to-left
113 Quaternion Interpolation As with complex numbers Lerp q t = (1" t)q 0 + tq 1 Slerp q t = sin(1" t)# q sin# 0 + sint# sin# q 1
114 Quaternion Interpolation Technique used depends on data Lerp generally good enough for motion capture (lots of samples) Need to normalize afterwards Slerp only needed if data is sparse Blow s method for simple interpolation (Also need to normalize) These days, Blow says just use lerp. YMMV. Demo
115 Interpolation Caveat q and q rotate vector to same place But not quite the same rotation q has axis r, with angle 2π-θ Causes problems with interpolation (different hemispheres) 2π θ r -r w θ v This is due to the half-angle form of quaternions.
116 Interpolation Caveat How to test? If dot product of two interpolating quats is < 0, takes long route around sphere Solution, negate one quat, then interpolate Preprocess to save time As mentioned
117 Operation Wrap-Up Multiply to concatenate rotations Addition only for interpolation (don t forget to normalize) Be careful with scale Quick rotation assumes unit quat Don t do (0.5 q) p Use lerp or slerp with identity quaternion
118 Summary Talked about orientation Formats good for internal storage Angle Matrices (2D or 3D) Quaternions Formats good for UI Euler angles Axis-angle Complex numbers not really used
119 References Shoemake, Ken, Animation Rotation with Quaternion Curves, SIGGRAPH 85, pp Shoemake, Ken, Quaternion Calculus for Animation, SIGGRAPH Course Notes, Math for SIGGRAPH, Hanson, Andrew J., Visualizing Quaternions, Morgan Kaufman, Blow, Jonathan, Hacking Quaternions, Game Developer, March Busser, Thomas, PolySlerp: A fast and accurate polynomial approximation of spherical linear interpolation (Slerp), Game Developer, February Van Verth, Jim, Vector Units and Quaternions, GDC
3D Tranformations. CS 4620 Lecture 6. Cornell CS4620 Fall 2013 Lecture 6. 2013 Steve Marschner (with previous instructors James/Bala)
3D Tranformations CS 4620 Lecture 6 1 Translation 2 Translation 2 Translation 2 Translation 2 Scaling 3 Scaling 3 Scaling 3 Scaling 3 Rotation about z axis 4 Rotation about z axis 4 Rotation about x axis
Animation (-4, -2, 0 ) + (( 2, 6, -4 ) - (-4, -2, 0 ))*.75 = (-4, -2, 0 ) + ( 6, 8, -4)*.75 = (.5, 4, -3 ).
Animation A Series of Still Images We Call Animation Animation needs no explanation. We see it in movies and games. We grew up with it in cartoons. Some of the most popular, longest-running television
Fundamentals of Computer Animation
Fundamentals of Computer Animation Quaternions as Orientations () page 1 Visualizing a Unit Quaternion Rotation in 4D Space ( ) = w + x + y z q = Norm q + q = q q [ w, v], v = ( x, y, z) w scalar q =,
Section 1.1. Introduction to R n
The Calculus of Functions of Several Variables Section. Introduction to R n Calculus is the study of functional relationships and how related quantities change with each other. In your first exposure to
Linear algebra and the geometry of quadratic equations. Similarity transformations and orthogonal matrices
MATH 30 Differential Equations Spring 006 Linear algebra and the geometry of quadratic equations Similarity transformations and orthogonal matrices First, some things to recall from linear algebra Two
Math for Game Programmers: Dual Numbers. Gino van den Bergen [email protected]
Math for Game Programmers: Dual Numbers Gino van den Bergen [email protected] Introduction Dual numbers extend real numbers, similar to complex numbers. Complex numbers adjoin an element i, for which i 2
Vectors 2. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.
Vectors 2 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Launch Mathematica. Type
Exam 1 Sample Question SOLUTIONS. y = 2x
Exam Sample Question SOLUTIONS. Eliminate the parameter to find a Cartesian equation for the curve: x e t, y e t. SOLUTION: You might look at the coordinates and notice that If you don t see it, we can
Metrics on SO(3) and Inverse Kinematics
Mathematical Foundations of Computer Graphics and Vision Metrics on SO(3) and Inverse Kinematics Luca Ballan Institute of Visual Computing Optimization on Manifolds Descent approach d is a ascent direction
Adding vectors We can do arithmetic with vectors. We ll start with vector addition and related operations. Suppose you have two vectors
1 Chapter 13. VECTORS IN THREE DIMENSIONAL SPACE Let s begin with some names and notation for things: R is the set (collection) of real numbers. We write x R to mean that x is a real number. A real number
Essential Mathematics for Computer Graphics fast
John Vince Essential Mathematics for Computer Graphics fast Springer Contents 1. MATHEMATICS 1 Is mathematics difficult? 3 Who should read this book? 4 Aims and objectives of this book 4 Assumptions made
Parametric Curves. (Com S 477/577 Notes) Yan-Bin Jia. Oct 8, 2015
Parametric Curves (Com S 477/577 Notes) Yan-Bin Jia Oct 8, 2015 1 Introduction A curve in R 2 (or R 3 ) is a differentiable function α : [a,b] R 2 (or R 3 ). The initial point is α[a] and the final point
Vector Math Computer Graphics Scott D. Anderson
Vector Math Computer Graphics Scott D. Anderson 1 Dot Product The notation v w means the dot product or scalar product or inner product of two vectors, v and w. In abstract mathematics, we can talk about
Computing Euler angles from a rotation matrix
Computing Euler angles from a rotation matrix Gregory G. Slabaugh Abstract This document discusses a simple technique to find all possible Euler angles from a rotation matrix. Determination of Euler angles
Lecture L3 - Vectors, Matrices and Coordinate Transformations
S. Widnall 16.07 Dynamics Fall 2009 Lecture notes based on J. Peraire Version 2.0 Lecture L3 - Vectors, Matrices and Coordinate Transformations By using vectors and defining appropriate operations between
3. INNER PRODUCT SPACES
. INNER PRODUCT SPACES.. Definition So far we have studied abstract vector spaces. These are a generalisation of the geometric spaces R and R. But these have more structure than just that of a vector space.
9 Multiplication of Vectors: The Scalar or Dot Product
Arkansas Tech University MATH 934: Calculus III Dr. Marcel B Finan 9 Multiplication of Vectors: The Scalar or Dot Product Up to this point we have defined what vectors are and discussed basic notation
Equations Involving Lines and Planes Standard equations for lines in space
Equations Involving Lines and Planes In this section we will collect various important formulas regarding equations of lines and planes in three dimensional space Reminder regarding notation: any quantity
The Geometry of the Dot and Cross Products
Journal of Online Mathematics and Its Applications Volume 6. June 2006. Article ID 1156 The Geometry of the Dot and Cross Products Tevian Dray Corinne A. Manogue 1 Introduction Most students first learn
CS 4620 Practicum Programming Assignment 6 Animation
CS 4620 Practicum Programming Assignment 6 Animation out: Friday 14th November 2014 due: : Monday 24th November 2014 1 Introduction In this assignment, we will explore a common topic in animation: key
The Geometry of the Dot and Cross Products
The Geometry of the Dot and Cross Products Tevian Dray Department of Mathematics Oregon State University Corvallis, OR 97331 [email protected] Corinne A. Manogue Department of Physics Oregon
Chapter 17. Orthogonal Matrices and Symmetries of Space
Chapter 17. Orthogonal Matrices and Symmetries of Space Take a random matrix, say 1 3 A = 4 5 6, 7 8 9 and compare the lengths of e 1 and Ae 1. The vector e 1 has length 1, while Ae 1 = (1, 4, 7) has length
A vector is a directed line segment used to represent a vector quantity.
Chapters and 6 Introduction to Vectors A vector quantity has direction and magnitude. There are many examples of vector quantities in the natural world, such as force, velocity, and acceleration. A vector
Unified Lecture # 4 Vectors
Fall 2005 Unified Lecture # 4 Vectors These notes were written by J. Peraire as a review of vectors for Dynamics 16.07. They have been adapted for Unified Engineering by R. Radovitzky. References [1] Feynmann,
THREE DIMENSIONAL GEOMETRY
Chapter 8 THREE DIMENSIONAL GEOMETRY 8.1 Introduction In this chapter we present a vector algebra approach to three dimensional geometry. The aim is to present standard properties of lines and planes,
Lecture 14: Section 3.3
Lecture 14: Section 3.3 Shuanglin Shao October 23, 2013 Definition. Two nonzero vectors u and v in R n are said to be orthogonal (or perpendicular) if u v = 0. We will also agree that the zero vector in
Computer Animation. Lecture 2. Basics of Character Animation
Computer Animation Lecture 2. Basics of Character Animation Taku Komura Overview Character Animation Posture representation Hierarchical structure of the body Joint types Translational, hinge, universal,
Review Sheet for Test 1
Review Sheet for Test 1 Math 261-00 2 6 2004 These problems are provided to help you study. The presence of a problem on this handout does not imply that there will be a similar problem on the test. And
Lecture 7. Matthew T. Mason. Mechanics of Manipulation. Lecture 7. Representing Rotation. Kinematic representation: goals, overview
Matthew T. Mason Mechanics of Manipulation Today s outline Readings, etc. We are starting chapter 3 of the text Lots of stuff online on representing rotations Murray, Li, and Sastry for matrix exponential
DEFINITION 5.1.1 A complex number is a matrix of the form. x y. , y x
Chapter 5 COMPLEX NUMBERS 5.1 Constructing the complex numbers One way of introducing the field C of complex numbers is via the arithmetic of matrices. DEFINITION 5.1.1 A complex number is a matrix of
PYTHAGOREAN TRIPLES KEITH CONRAD
PYTHAGOREAN TRIPLES KEITH CONRAD 1. Introduction A Pythagorean triple is a triple of positive integers (a, b, c) where a + b = c. Examples include (3, 4, 5), (5, 1, 13), and (8, 15, 17). Below is an ancient
13.4 THE CROSS PRODUCT
710 Chapter Thirteen A FUNDAMENTAL TOOL: VECTORS 62. Use the following steps and the results of Problems 59 60 to show (without trigonometry) that the geometric and algebraic definitions of the dot product
Two vectors are equal if they have the same length and direction. They do not
Vectors define vectors Some physical quantities, such as temperature, length, and mass, can be specified by a single number called a scalar. Other physical quantities, such as force and velocity, must
Math 215 HW #6 Solutions
Math 5 HW #6 Solutions Problem 34 Show that x y is orthogonal to x + y if and only if x = y Proof First, suppose x y is orthogonal to x + y Then since x, y = y, x In other words, = x y, x + y = (x y) T
521493S Computer Graphics. Exercise 2 & course schedule change
521493S Computer Graphics Exercise 2 & course schedule change Course Schedule Change Lecture from Wednesday 31th of March is moved to Tuesday 30th of March at 16-18 in TS128 Question 2.1 Given two nonparallel,
animation animation shape specification as a function of time
animation animation shape specification as a function of time animation representation many ways to represent changes with time intent artistic motion physically-plausible motion efficiency control typically
11.1. Objectives. Component Form of a Vector. Component Form of a Vector. Component Form of a Vector. Vectors and the Geometry of Space
11 Vectors and the Geometry of Space 11.1 Vectors in the Plane Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. 2 Objectives! Write the component form of
α = u v. In other words, Orthogonal Projection
Orthogonal Projection Given any nonzero vector v, it is possible to decompose an arbitrary vector u into a component that points in the direction of v and one that points in a direction orthogonal to v
Chapter 6. Orthogonality
6.3 Orthogonal Matrices 1 Chapter 6. Orthogonality 6.3 Orthogonal Matrices Definition 6.4. An n n matrix A is orthogonal if A T A = I. Note. We will see that the columns of an orthogonal matrix must be
Notes on Orthogonal and Symmetric Matrices MENU, Winter 2013
Notes on Orthogonal and Symmetric Matrices MENU, Winter 201 These notes summarize the main properties and uses of orthogonal and symmetric matrices. We covered quite a bit of material regarding these topics,
Content. Chapter 4 Functions 61 4.1 Basic concepts on real functions 62. Credits 11
Content Credits 11 Chapter 1 Arithmetic Refresher 13 1.1 Algebra 14 Real Numbers 14 Real Polynomials 19 1.2 Equations in one variable 21 Linear Equations 21 Quadratic Equations 22 1.3 Exercises 28 Chapter
Solutions to Practice Problems
Higher Geometry Final Exam Tues Dec 11, 5-7:30 pm Practice Problems (1) Know the following definitions, statements of theorems, properties from the notes: congruent, triangle, quadrilateral, isosceles
December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS
December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B KITCHENS The equation 1 Lines in two-dimensional space (1) 2x y = 3 describes a line in two-dimensional space The coefficients of x and y in the equation
Eigenvalues and Eigenvectors
Chapter 6 Eigenvalues and Eigenvectors 6. Introduction to Eigenvalues Linear equations Ax D b come from steady state problems. Eigenvalues have their greatest importance in dynamic problems. The solution
Lectures notes on orthogonal matrices (with exercises) 92.222 - Linear Algebra II - Spring 2004 by D. Klain
Lectures notes on orthogonal matrices (with exercises) 92.222 - Linear Algebra II - Spring 2004 by D. Klain 1. Orthogonal matrices and orthonormal sets An n n real-valued matrix A is said to be an orthogonal
12.5 Equations of Lines and Planes
Instructor: Longfei Li Math 43 Lecture Notes.5 Equations of Lines and Planes What do we need to determine a line? D: a point on the line: P 0 (x 0, y 0 ) direction (slope): k 3D: a point on the line: P
Figure 1.1 Vector A and Vector F
CHAPTER I VECTOR QUANTITIES Quantities are anything which can be measured, and stated with number. Quantities in physics are divided into two types; scalar and vector quantities. Scalar quantities have
MOVIES, GAMBLING, SECRET CODES, JUST MATRIX MAGIC
MOVIES, GAMBLING, SECRET CODES, JUST MATRIX MAGIC DR. LESZEK GAWARECKI 1. The Cartesian Coordinate System In the Cartesian system points are defined by giving their coordinates. Plot the following points:
Section 1.4. Lines, Planes, and Hyperplanes. The Calculus of Functions of Several Variables
The Calculus of Functions of Several Variables Section 1.4 Lines, Planes, Hyperplanes In this section we will add to our basic geometric understing of R n by studying lines planes. If we do this carefully,
Solutions to old Exam 1 problems
Solutions to old Exam 1 problems Hi students! I am putting this old version of my review for the first midterm review, place and time to be announced. Check for updates on the web site as to which sections
Recall the basic property of the transpose (for any A): v A t Aw = v w, v, w R n.
ORTHOGONAL MATRICES Informally, an orthogonal n n matrix is the n-dimensional analogue of the rotation matrices R θ in R 2. When does a linear transformation of R 3 (or R n ) deserve to be called a rotation?
Section 9.5: Equations of Lines and Planes
Lines in 3D Space Section 9.5: Equations of Lines and Planes Practice HW from Stewart Textbook (not to hand in) p. 673 # 3-5 odd, 2-37 odd, 4, 47 Consider the line L through the point P = ( x, y, ) that
TWO-DIMENSIONAL TRANSFORMATION
CHAPTER 2 TWO-DIMENSIONAL TRANSFORMATION 2.1 Introduction As stated earlier, Computer Aided Design consists of three components, namely, Design (Geometric Modeling), Analysis (FEA, etc), and Visualization
Solving Simultaneous Equations and Matrices
Solving Simultaneous Equations and Matrices The following represents a systematic investigation for the steps used to solve two simultaneous linear equations in two unknowns. The motivation for considering
Orthogonal Projections
Orthogonal Projections and Reflections (with exercises) by D. Klain Version.. Corrections and comments are welcome! Orthogonal Projections Let X,..., X k be a family of linearly independent (column) vectors
Factoring Patterns in the Gaussian Plane
Factoring Patterns in the Gaussian Plane Steve Phelps Introduction This paper describes discoveries made at the Park City Mathematics Institute, 00, as well as some proofs. Before the summer I understood
Geometry of Vectors. 1 Cartesian Coordinates. Carlo Tomasi
Geometry of Vectors Carlo Tomasi This note explores the geometric meaning of norm, inner product, orthogonality, and projection for vectors. For vectors in three-dimensional space, we also examine the
discuss how to describe points, lines and planes in 3 space.
Chapter 2 3 Space: lines and planes In this chapter we discuss how to describe points, lines and planes in 3 space. introduce the language of vectors. discuss various matters concerning the relative position
CS3220 Lecture Notes: QR factorization and orthogonal transformations
CS3220 Lecture Notes: QR factorization and orthogonal transformations Steve Marschner Cornell University 11 March 2009 In this lecture I ll talk about orthogonal matrices and their properties, discuss
FURTHER VECTORS (MEI)
Mathematics Revision Guides Further Vectors (MEI) (column notation) Page of MK HOME TUITION Mathematics Revision Guides Level: AS / A Level - MEI OCR MEI: C FURTHER VECTORS (MEI) Version : Date: -9-7 Mathematics
Kinematical Animation. [email protected] 2013-14
Kinematical Animation 2013-14 3D animation in CG Goal : capture visual attention Motion of characters Believable Expressive Realism? Controllability Limits of purely physical simulation : - little interactivity
5.3 The Cross Product in R 3
53 The Cross Product in R 3 Definition 531 Let u = [u 1, u 2, u 3 ] and v = [v 1, v 2, v 3 ] Then the vector given by [u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ] is called the cross product (or
Introduction to Matrices
Introduction to Matrices Tom Davis tomrdavis@earthlinknet 1 Definitions A matrix (plural: matrices) is simply a rectangular array of things For now, we ll assume the things are numbers, but as you go on
[1] Diagonal factorization
8.03 LA.6: Diagonalization and Orthogonal Matrices [ Diagonal factorization [2 Solving systems of first order differential equations [3 Symmetric and Orthonormal Matrices [ Diagonal factorization Recall:
1 VECTOR SPACES AND SUBSPACES
1 VECTOR SPACES AND SUBSPACES What is a vector? Many are familiar with the concept of a vector as: Something which has magnitude and direction. an ordered pair or triple. a description for quantities such
Problem Set 5 Due: In class Thursday, Oct. 18 Late papers will be accepted until 1:00 PM Friday.
Math 312, Fall 2012 Jerry L. Kazdan Problem Set 5 Due: In class Thursday, Oct. 18 Late papers will be accepted until 1:00 PM Friday. In addition to the problems below, you should also know how to solve
Geometric Transformations
Geometric Transformations Definitions Def: f is a mapping (function) of a set A into a set B if for every element a of A there exists a unique element b of B that is paired with a; this pairing is denoted
Copyrighted Material. Chapter 1 DEGREE OF A CURVE
Chapter 1 DEGREE OF A CURVE Road Map The idea of degree is a fundamental concept, which will take us several chapters to explore in depth. We begin by explaining what an algebraic curve is, and offer two
Continuous Groups, Lie Groups, and Lie Algebras
Chapter 7 Continuous Groups, Lie Groups, and Lie Algebras Zeno was concerned with three problems... These are the problem of the infinitesimal, the infinite, and continuity... Bertrand Russell The groups
x1 x 2 x 3 y 1 y 2 y 3 x 1 y 2 x 2 y 1 0.
Cross product 1 Chapter 7 Cross product We are getting ready to study integration in several variables. Until now we have been doing only differential calculus. One outcome of this study will be our ability
What are the place values to the left of the decimal point and their associated powers of ten?
The verbal answers to all of the following questions should be memorized before completion of algebra. Answers that are not memorized will hinder your ability to succeed in geometry and algebra. (Everything
South Carolina College- and Career-Ready (SCCCR) Pre-Calculus
South Carolina College- and Career-Ready (SCCCR) Pre-Calculus Key Concepts Arithmetic with Polynomials and Rational Expressions PC.AAPR.2 PC.AAPR.3 PC.AAPR.4 PC.AAPR.5 PC.AAPR.6 PC.AAPR.7 Standards Know
ISOMETRIES OF R n KEITH CONRAD
ISOMETRIES OF R n KEITH CONRAD 1. Introduction An isometry of R n is a function h: R n R n that preserves the distance between vectors: h(v) h(w) = v w for all v and w in R n, where (x 1,..., x n ) = x
TRIGONOMETRY FOR ANIMATION
TRIGONOMETRY FOR ANIMATION What is Trigonometry? Trigonometry is basically the study of triangles and the relationship of their sides and angles. For example, if you take any triangle and make one of the
Statics problem solving strategies, hints and tricks
Statics problem solving strategies, hints and tricks Contents 1 Solving a problem in 7 steps 3 1.1 To read.............................................. 3 1.2 To draw..............................................
Geometric Transformation CS 211A
Geometric Transformation CS 211A What is transformation? Moving points (x,y) moves to (x+t, y+t) Can be in any dimension 2D Image warps 3D 3D Graphics and Vision Can also be considered as a movement to
28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. v x. u y v z u z v y u y u z. v y v z
28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE 1.4 Cross Product 1.4.1 Definitions The cross product is the second multiplication operation between vectors we will study. The goal behind the definition
Math 241, Exam 1 Information.
Math 241, Exam 1 Information. 9/24/12, LC 310, 11:15-12:05. Exam 1 will be based on: Sections 12.1-12.5, 14.1-14.3. The corresponding assigned homework problems (see http://www.math.sc.edu/ boylan/sccourses/241fa12/241.html)
... ... . (2,4,5).. ...
12 Three Dimensions ½¾º½ Ì ÓÓÖ Ò Ø ËÝ Ø Ñ So far wehave been investigatingfunctions ofthe form y = f(x), withone independent and one dependent variable Such functions can be represented in two dimensions,
MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem
MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem David L. Finn November 30th, 2004 In the next few days, we will introduce some of the basic problems in geometric modelling, and
Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus
Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Objectives: This is your review of trigonometry: angles, six trig. functions, identities and formulas, graphs:
L 2 : x = s + 1, y = s, z = 4s + 4. 3. Suppose that C has coordinates (x, y, z). Then from the vector equality AC = BD, one has
The line L through the points A and B is parallel to the vector AB = 3, 2, and has parametric equations x = 3t + 2, y = 2t +, z = t Therefore, the intersection point of the line with the plane should satisfy:
Introduction to Computer Graphics Marie-Paule Cani & Estelle Duveau
Introduction to Computer Graphics Marie-Paule Cani & Estelle Duveau 04/02 Introduction & projective rendering 11/02 Prodedural modeling, Interactive modeling with parametric surfaces 25/02 Introduction
Revised Version of Chapter 23. We learned long ago how to solve linear congruences. ax c (mod m)
Chapter 23 Squares Modulo p Revised Version of Chapter 23 We learned long ago how to solve linear congruences ax c (mod m) (see Chapter 8). It s now time to take the plunge and move on to quadratic equations.
1 Symmetries of regular polyhedra
1230, notes 5 1 Symmetries of regular polyhedra Symmetry groups Recall: Group axioms: Suppose that (G, ) is a group and a, b, c are elements of G. Then (i) a b G (ii) (a b) c = a (b c) (iii) There is an
6. Vectors. 1 2009-2016 Scott Surgent ([email protected])
6. Vectors For purposes of applications in calculus and physics, a vector has both a direction and a magnitude (length), and is usually represented as an arrow. The start of the arrow is the vector s foot,
Vector Algebra CHAPTER 13. Ü13.1. Basic Concepts
CHAPTER 13 ector Algebra Ü13.1. Basic Concepts A vector in the plane or in space is an arrow: it is determined by its length, denoted and its direction. Two arrows represent the same vector if they have
www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates
Further Pure Summary Notes. Roots of Quadratic Equations For a quadratic equation ax + bx + c = 0 with roots α and β Sum of the roots Product of roots a + b = b a ab = c a If the coefficients a,b and c
Solutions to Exercises, Section 5.1
Instructor s Solutions Manual, Section 5.1 Exercise 1 Solutions to Exercises, Section 5.1 1. Find all numbers t such that ( 1 3,t) is a point on the unit circle. For ( 1 3,t)to be a point on the unit circle
PHYSICS 151 Notes for Online Lecture #6
PHYSICS 151 Notes for Online Lecture #6 Vectors - A vector is basically an arrow. The length of the arrow represents the magnitude (value) and the arrow points in the direction. Many different quantities
CIS 536/636 Introduction to Computer Graphics. Kansas State University. CIS 536/636 Introduction to Computer Graphics
2 Lecture Outline Animation 2 of 3: Rotations, Quaternions Dynamics & Kinematics William H. Hsu Department of Computing and Information Sciences, KSU KSOL course pages: http://bit.ly/hgvxlh / http://bit.ly/evizre
2-1 Position, Displacement, and Distance
2-1 Position, Displacement, and Distance In describing an object s motion, we should first talk about position where is the object? A position is a vector because it has both a magnitude and a direction:
B4 Computational Geometry
3CG 2006 / B4 Computational Geometry David Murray [email protected] www.robots.o.ac.uk/ dwm/courses/3cg Michaelmas 2006 3CG 2006 2 / Overview Computational geometry is concerned with the derivation
Recall that two vectors in are perpendicular or orthogonal provided that their dot
Orthogonal Complements and Projections Recall that two vectors in are perpendicular or orthogonal provided that their dot product vanishes That is, if and only if Example 1 The vectors in are orthogonal
Derive 5: The Easiest... Just Got Better!
Liverpool John Moores University, 1-15 July 000 Derive 5: The Easiest... Just Got Better! Michel Beaudin École de Technologie Supérieure, Canada Email; [email protected] 1. Introduction Engineering
Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product
Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product Geometrical definition Properties Expression in components. Definition in components Properties Geometrical expression.
Elements of a graph. Click on the links below to jump directly to the relevant section
Click on the links below to jump directly to the relevant section Elements of a graph Linear equations and their graphs What is slope? Slope and y-intercept in the equation of a line Comparing lines on
1 TRIGONOMETRY. 1.0 Introduction. 1.1 Sum and product formulae. Objectives
TRIGONOMETRY Chapter Trigonometry Objectives After studying this chapter you should be able to handle with confidence a wide range of trigonometric identities; be able to express linear combinations of
Physics 235 Chapter 1. Chapter 1 Matrices, Vectors, and Vector Calculus
Chapter 1 Matrices, Vectors, and Vector Calculus In this chapter, we will focus on the mathematical tools required for the course. The main concepts that will be covered are: Coordinate transformations
Linear Algebra Notes for Marsden and Tromba Vector Calculus
Linear Algebra Notes for Marsden and Tromba Vector Calculus n-dimensional Euclidean Space and Matrices Definition of n space As was learned in Math b, a point in Euclidean three space can be thought of
