Transformations and Matrices
From Math Images
| (11 intermediate revisions not shown.) | |||
| Line 1: | Line 1: | ||
| - | {{Image Description | + | {{Image Description Ready |
|ImageName=Transformations | |ImageName=Transformations | ||
|Image=Tranformations4.png | |Image=Tranformations4.png | ||
|ImageIntro= This picture shows an example of four basic transformations (where the original teapot is a red wire frame). On the top left is a translation, which is essentially the teapot being moved. On the top right is a scaling. The teapot has been squished or stretched in each of the three dimensions. On the bottom left is a rotation. In this case the teapot has been rotated around the x axis and the z axis (veritcal). On the bottom right is a shearing, creating a skewed look. | |ImageIntro= This picture shows an example of four basic transformations (where the original teapot is a red wire frame). On the top left is a translation, which is essentially the teapot being moved. On the top right is a scaling. The teapot has been squished or stretched in each of the three dimensions. On the bottom left is a rotation. In this case the teapot has been rotated around the x axis and the z axis (veritcal). On the bottom right is a shearing, creating a skewed look. | ||
| - | |ImageDescElem=When an object undergoes a transformation, the transformation can be represented as a [[Matrix|matrix]]. Different transformations such as translations, rotations, scaling and shearing are represented mathematically in different ways. One matrix can also represent multiple transformations in sequence when the matrices are multiplied together. <br /><br /> | + | |ImageDescElem=When an object undergoes a transformation, the transformation can be represented as a [[Matrix|matrix]]. Different transformations such as translations, rotations, scaling and shearing are represented mathematically in different ways. One matrix can also represent multiple transformations in sequence when the matrices are multiplied together. <br /> |
| + | |||
| + | ==Basic Transformations For Graphics== | ||
| + | Computer graphics works by representing objects in terms of simple [[Graphics Primitives|primitives]] that are manipulated with transformations that preserve some primitives’ essential properties. These properties may include angles, lengths, or basic shapes. Some of these transformations can work on primitives with vertices in standard 2D or 3D space, but some need to have vertices in homogeneous coordinates. The general graphics approach is to do everything in homogeneous coordinates, but we’ll talk about the primitives in terms of both kinds when we can. <br /><br /> | ||
| + | |||
| + | The most fundamental kinds of transformations for graphics are rotation, scaling, and translation. There are also a few cases when you might want to use shear transformations, so we’ll talk about these as well. <br /><br /> | ||
| + | |ImageDesc= | ||
==Linear Transformations Are Matrices== | ==Linear Transformations Are Matrices== | ||
| Line 35: | Line 41: | ||
From this example, we see that the linear transformation is exactly determined by the matrix whose first column is <math>f(i)</math>, whose second column is <math>f(j)</math>, and whose third column is <math>f(k)</math>, and that applying the function f is exactly the same as multiplying by the matrix. So the linear transformation <b>is</b> the matrix multiplication, and we can use the concepts of linear transformation and matrix multiplication interchangeably.<br /> | From this example, we see that the linear transformation is exactly determined by the matrix whose first column is <math>f(i)</math>, whose second column is <math>f(j)</math>, and whose third column is <math>f(k)</math>, and that applying the function f is exactly the same as multiplying by the matrix. So the linear transformation <b>is</b> the matrix multiplication, and we can use the concepts of linear transformation and matrix multiplication interchangeably.<br /> | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
===Rotation=== | ===Rotation=== | ||
{{hide|1= | {{hide|1= | ||
| - | [[Image:Rotationgraph.png|300px|right]] A 2D rotation transformation rotates everything in 2D space around the origin by a given angle. In order to see what it does, let’s take a look at what a rotation by a positive angle | + | [[Image:Rotationgraph.png|300px|right]] A 2D rotation transformation rotates everything in 2D space around the origin by a given angle. In order to see what it does, let’s take a look at what a rotation by a positive angle <math>\theta </math> does to the coordinate axes. Now (x,y) is the result when you apply the transformation to (1,0), which means that<br /> |
::<math> \begin{align} x = cos(\theta ) \\ | ::<math> \begin{align} x = cos(\theta ) \\ | ||
y = sin(\theta ) \end{align} </math><br /> | y = sin(\theta ) \end{align} </math><br /> | ||
| Line 82: | Line 57: | ||
sin(\theta ) & cos(\theta ) | sin(\theta ) & cos(\theta ) | ||
\end{bmatrix} </math><br /> | \end{bmatrix} </math><br /> | ||
| - | or, as XKCD (http://xkcd.com/184/) sees it (notice that the rotation is by -90° and <math>sin(-90\,^{\circ}) = -sin(90\,^{\circ})</math>, <br /><br | + | or, as XKCD (http://xkcd.com/184/) sees it (notice that the rotation is by -90° and <math>sin(-90\,^{\circ}) = -sin(90\,^{\circ})</math>, <br /><br /> |
The situation for 3D rotations is different because a rotation in 3D space must leave a fixed line through the origin. In fact we really only handle the special cases where the fixed line is one of the coordinate axes. Let’s start with the easiest one.<br /><br /> | The situation for 3D rotations is different because a rotation in 3D space must leave a fixed line through the origin. In fact we really only handle the special cases where the fixed line is one of the coordinate axes. Let’s start with the easiest one.<br /><br /> | ||
| Line 102: | Line 77: | ||
For rotations around the Y-axis, the view down the Y-axis looks different from the one down the Z-axis; it is <br /> | For rotations around the Y-axis, the view down the Y-axis looks different from the one down the Z-axis; it is <br /> | ||
::[[Image:Xzplane.png| 200px]] <br /> | ::[[Image:Xzplane.png| 200px]] <br /> | ||
| - | Here a positive-angle is from the X-axis towards the Z-axis, but <math> X \times Z = -Z \times X = -Y </math>, so the rotation axis dimension is pointing in the opposite direction from the Y-axis. Thus a the angle for the rotation is the negative of the angle we would see in the axes above, | + | Here a positive-angle is from the X-axis towards the Z-axis, but <math> X \times Z = -Z \times X = -Y </math>, so the rotation axis dimension is pointing in the opposite direction from the Y-axis. Thus a the angle for the rotation is the negative of the angle we would see in the axes above, so we use <math>-\theta </math> instead of <math>\theta</math>. Since cos is an even function but sin is odd, we can substitute in <math>cos(\theta )</math> for <math> cos(-\theta ) </math> and <math>-sin(\theta ) </math> for <math>sin(-\theta ) </math>. Thus we have the rotation matrix <br /> |
::<math> \begin{bmatrix} | ::<math> \begin{bmatrix} | ||
cos(-\theta ) & 0 & -sin(-\theta ) \\ | cos(-\theta ) & 0 & -sin(-\theta ) \\ | ||
| Line 216: | Line 191: | ||
::<math>(A \times B \times C)^{-1} = C^{-1} \times B^{-1} \times A^{-1} </math> <br /> | ::<math>(A \times B \times C)^{-1} = C^{-1} \times B^{-1} \times A^{-1} </math> <br /> | ||
}} | }} | ||
| + | |||
| + | ==Transformation Composition Is Matrix Multiplication== | ||
| + | Transformations are usually not used by themselves, especially in graphics, so you need to have a way to compose transformations, as in <math>g(f(P))</math>. But if G is the matrix for the transformation g, and F is the matrix for the transformation f, then the matrix product G*F is the matrix for the composed functions gf.<br /><br /> | ||
| + | For example, we have the translation represented by the matrix <br /> | ||
| + | ::<math>\begin{bmatrix} 1 & 0 & 2 \\ | ||
| + | 0 & 1 & 1 \\ | ||
| + | 0 & 0 & 1 | ||
| + | \end{bmatrix}</math> <br /> | ||
| + | which represents a move two units in the x direction and one unit in the y direction. If we want to then rotate the same object with the matrix <br /> | ||
| + | ::<math>\begin{bmatrix} -0.5 & 0.866 & 0 \\ | ||
| + | -0.866 & -0.5 & 0 \\ | ||
| + | 0 & 0 & 1 | ||
| + | \end{bmatrix}</math><br /> | ||
| + | we can represent the combination of the two actions with a single composed matrix. This matrix is found by multiplying the second action by the first action. <br /> | ||
| + | ::<math>\begin{bmatrix} -0.5 & 0.866 & 0 \\ | ||
| + | -0.866 & -0.5 & 0 \\ | ||
| + | 0 & 0 & 1 | ||
| + | \end{bmatrix} * \begin{bmatrix} 1 & 0 & 2 \\ | ||
| + | 0 & 1 & 1 \\ | ||
| + | 0 & 0 & 1 | ||
| + | \end{bmatrix} = \begin{bmatrix} -0.5 & 0.866 & -0.134 \\ | ||
| + | -0.866 & -0.5 & -2.23 \\ | ||
| + | 0 & 0 & 1 | ||
| + | \end{bmatrix}</math> <br /> | ||
| + | So this matrix represents moving, then rotating an object in sequence.<br /><br /> | ||
| + | |||
| + | In the example below, the teapot on the left has just been translated by the translation matrix above. The next image is just the rotation from the rotation images. The two images that follow are the translation then rotation and rotation then translation respectively. This demonstrates the combination of different transformations and how they must be done in the right order. <br /> | ||
| + | <center>[[Image:Rotationimage.png|1200px]] </center> | ||
| + | |||
==Transformations and Graphics Environments== | ==Transformations and Graphics Environments== | ||
{{hide|1= | {{hide|1= | ||
| Line 272: | Line 276: | ||
where N is the number of transformations one wants to save. | where N is the number of transformations one wants to save. | ||
}} | }} | ||
| - | + | ||
| - | + | ||
|other=stacks | |other=stacks | ||
| Line 287: | Line 290: | ||
|InProgress=No | |InProgress=No | ||
}} | }} | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | =Messages to the Future= | ||
| + | When there is a page for 2D, 3D, 4D real spaces; affine spaces; homogeneous coordinates, this page should link to that page (to the homogeneous coordinates section). | ||
Current revision
| Transformations |
|---|
Transformations
- This picture shows an example of four basic transformations (where the original teapot is a red wire frame). On the top left is a translation, which is essentially the teapot being moved. On the top right is a scaling. The teapot has been squished or stretched in each of the three dimensions. On the bottom left is a rotation. In this case the teapot has been rotated around the x axis and the z axis (veritcal). On the bottom right is a shearing, creating a skewed look.
Contents |
Basic Description
When an object undergoes a transformation, the transformation can be represented as a matrix. Different transformations such as translations, rotations, scaling and shearing are represented mathematically in different ways. One matrix can also represent multiple transformations in sequence when the matrices are multiplied together.Basic Transformations For Graphics
Computer graphics works by representing objects in terms of simple primitives that are manipulated with transformations that preserve some primitives’ essential properties. These properties may include angles, lengths, or basic shapes. Some of these transformations can work on primitives with vertices in standard 2D or 3D space, but some need to have vertices in homogeneous coordinates. The general graphics approach is to do everything in homogeneous coordinates, but we’ll talk about the primitives in terms of both kinds when we can.
The most fundamental kinds of transformations for graphics are rotation, scaling, and translation. There are also a few cases when you might want to use shear transformations, so we’ll talk about these as well.
A More Mathematical Explanation
- Note: understanding of this explanation requires: *stacks
Linear Transformations Are Matrices
A linear transformation on 2D (or 3D) space is a function f f [...]Linear Transformations Are Matrices
A linear transformation on 2D (or 3D) space is a function f from 2D (or 3D) space to itself that has the property that
Since points in 2D or 3D space can be written as
or
with
,
, and
the coordinate vectors, then we see that
or
This tells us that the linear transformation is completely determined by what it does to the coordinate vectors.
Let’s see an example of this: if the transformation has the following action on the coordinates:
then for any point we have:
From this example, we see that the linear transformation is exactly determined by the matrix whose first column is
, whose second column is
, and whose third column is
, and that applying the function f is exactly the same as multiplying by the matrix. So the linear transformation is the matrix multiplication, and we can use the concepts of linear transformation and matrix multiplication interchangeably.
Rotation
Scaling
Translation
Shear
Matrix Inverses
Transformation Composition Is Matrix Multiplication
Transformations are usually not used by themselves, especially in graphics, so you need to have a way to compose transformations, as in
. But if G is the matrix for the transformation g, and F is the matrix for the transformation f, then the matrix product G*F is the matrix for the composed functions gf.
For example, we have the translation represented by the matrix
which represents a move two units in the x direction and one unit in the y direction. If we want to then rotate the same object with the matrix
we can represent the combination of the two actions with a single composed matrix. This matrix is found by multiplying the second action by the first action.
So this matrix represents moving, then rotating an object in sequence.
In the example below, the teapot on the left has just been translated by the translation matrix above. The next image is just the rotation from the rotation images. The two images that follow are the translation then rotation and rotation then translation respectively. This demonstrates the combination of different transformations and how they must be done in the right order.
Transformations and Graphics Environments
Teaching Materials
- There are currently no teaching materials for this page. Add teaching materials.
References
Page written by Steve Cunningham.
Leave a message on the discussion page by clicking the 'discussion' tab at the top of this image page.
Messages to the Future
When there is a page for 2D, 3D, 4D real spaces; affine spaces; homogeneous coordinates, this page should link to that page (to the homogeneous coordinates section).


does to the coordinate axes. Now (x,y) is the result when you apply the transformation to (1,0), which means that

, 
, the axis of rotation. This looks like an exact analogue of the XY-plane, and so we can see that the rotation matrix must leave X fixed and operate only on Y and Z as 
, so the rotation axis dimension is pointing in the opposite direction from the Y-axis. Thus a the angle for the rotation is the negative of the angle we would see in the axes above, so we use
instead of
for
and
for
. Thus we have the rotation matrix 
around the Z-axis to move your fixed line into the YZ-plane
around the X-axis to move that line to the Y-axis
to move your rotation line back into the YZ-plane
to move your rotation line back to the original line.![\begin{bmatrix}
* & * & * & 0 \\ [0.3em]
* & * & * & 0 \\ [0.3em]
* & * & * & 0 \\
0 & 0 & 0 & 1 \end{bmatrix}](/mathimages/imgUpload/math/b/0/6/b06da6dbe9dfbd0cd7f4402476153e11.png)
. Then



are the scaling factors for x, y, and z respectively. 
to the X-coordinate and
to the Y-coordinate of every point in 2D space, we see that


.
coordinate of the vector to the
coordinate.
. The values of A and B are adjusted to give precisely the view that you want, and the z-term of the result is usually dropped to give the needed 2D view of the 3D object. An example is the classical cabinet view shown below: 


and
.



