You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MITI67 a8d20f0947 read it all again
some typos, some long sentences splitted, its all fine now
8 years ago
..
tmp adding barcode 9 years ago
2drotmat.png matrix chapter 9 years ago
3drotmat.png matrix chapter 9 years ago
3dtransmat.png matrix chapter 9 years ago
README-ch.md finish 6 chapters 9 years ago
README-de.md read it all again 8 years ago
README-fr.md Corrections chapter 8 fr 8 years ago
README-it.md chapter 08 in italian + errata corrige 8 years ago
README-jp.md minor re-wording 9 years ago
README.md relative paths as variables, glossary querry, code style 9 years ago
SUMMARY.md adding subnails 8 years ago
TITLE.md adding subnails 8 years ago
cross-animated.frag credits and fixes 9 years ago
cross-animated.png updating 8 years ago
cross-rotate.frag credits and fixes 9 years ago
cross-rotate.png adding images 8 years ago
cross-scale.frag credits and fixes 9 years ago
cross-scale.png adding images 8 years ago
cross-translate.frag credits and fixes 9 years ago
cross-translate.png adding images 8 years ago
cross.frag credits and fixes 9 years ago
cross.png adding subnails 8 years ago
index.php adding files and main README-JP.md 9 years ago
matrices.frag adding fractals 9 years ago
matrices.png adding subnails 8 years ago
matrix.frag adding matrix animate 9 years ago
matrix.png updating 8 years ago
matrixes.png matrix chapter 9 years ago
rotate.jpg Changed DPI from 300 to 96 for all JPEGs that were not being resized properly in the resultant pdf. 9 years ago
rotmat.png matrix chapter 9 years ago
scale.png matrix chapter 9 years ago
translate.jpg Changed DPI from 300 to 96 for all JPEGs that were not being resized properly in the resultant pdf. 9 years ago
yuv.frag matrix chapter 9 years ago
yuv.png adding thumbs 8 years ago

README.md

2D Matrices

Translate

In the previous chapter we learned how to make some shapes - the trick to moving those shapes is to move the coordinate system itself. We can achieve that by simply adding a vector to the st variable that contains the location of each fragment. This causes the whole space coordinate system to move.

This is easier to see than to explain, so to see for yourself:

  • Uncomment line 35 of the code below to see how the space itself moves around.

Now try the following exercise:

  • Using u_time together with the shaping functions move the small cross around in an interesting way. Search for a specific quality of motion you are interested in and try to make the cross move in the same way. Recording something from the "real world" first might be useful - it could be the coming and going of waves, a pendulum movement, a bouncing ball, a car accelerating, a bicycle stopping.

Rotations

To rotate objects we also need to move the entire space system. For that we are going to use a matrix. A matrix is an organized set of numbers in columns and rows. Vectors are multiplied by matrices following a precise set of rules in order to modify the values of the vector in a particular way.

Wikipedia entry for Matrix (mathematics)

GLSL has native support for two, three and four dimensional matrices: mat2 (2x2), mat3 (3x3) and mat4 (4x4). GLSL also supports matrix multiplication (*) and a matrix specific function (matrixCompMult()).

Based on how matrices behave it's possible to construct matrices to produce specific behaviors. For example we can use a matrix to translate a vector:

More interestingly, we can use a matrix to rotate the coordinate system:

Take a look at the following code for a function that constructs a 2D rotation matrix. This function follows the above formula for two dimentional vectors to rotate the coordinates around the vec2(0.0) point.

mat2 rotate2d(float _angle){
    return mat2(cos(_angle),-sin(_angle),
                sin(_angle),cos(_angle));
}

According to the way we've been drawing shapes, this is not exactly what we want. Our cross shape is drawn in the center of the canvas which corresponds to the position vec2(0.5). So, before we rotate the space we need to move shape from the center to the vec2(0.0) coordinate, rotate the space, then finally move it back to the original place.

That looks like the following code:

Try the following exercises:

  • Uncomment line 45 of above code and pay attention to what happens.

  • Comment the translations before and after the rotation, on lines 37 and 39, and observe the consequences.

  • Use rotations to improve the animation you simulated in the translation exercise.

Scale

We've seen how matrices are used to translate and rotate objects in space. (Or more precisely to transform the coordinate system to rotate and move the objects.) If you've used 3D modeling software or the push and pop matrix functions in Processing, you will know that matrices can also be used to scale the size of an object.

Following the previous formula, we can figure out how to make a 2D scaling matrix:

mat2 scale(vec2 _scale){
    return mat2(_scale.x,0.0,
                0.0,_scale.y);
}

Try the following exercises to understand more deeply how this works.

  • Uncomment line 42 of above code to see the space coordinate being scaled.

  • See what happens when you comment the translations before and after the scaling on lines 37 and 39.

  • Try combining a rotation matrix together with a scale matrix. Be aware that the order matters. Multiply by the matrix first and then multiply the vectors.

  • Now that you know how to draw different shapes, and move, rotate and scale them, it's time to make a nice composition. Design and construct a fake UI or HUD (heads up display). Use the following ShaderToy example by Ndel for inspiration and reference.

Other uses for matrices: YUV color

YUV is a color space used for analog encoding of photos and videos that takes into account the range of human perception to reduce the bandwidth of chrominance components.

The following code is an interesting opportunity to use matrix operations in GLSL to transform colors from one mode to another.

As you can see we are treating colors as vectors by multiplying them with matrices. In that way we “move” the values around.

In this chapter we've learned how to use matrix transformations to move, rotate and scale vectors. These transformations will be essential for making compositions out of the shapes we learned about in the previous chapter. In the next chapter we'll apply all we've learned to make beautiful procedural patterns. You will find that coding repetition and variation can be an exciting practice.