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.
thebookofshaders/08
Patricio Gonzalez Vivo acefd00203 adding non edited chapters 10 years ago
..
2drotmat.png adding non edited chapters 10 years ago
3drotmat.png adding non edited chapters 10 years ago
3dscalemat.png adding non edited chapters 10 years ago
3dtransmat.png adding non edited chapters 10 years ago
README.md adding non edited chapters 10 years ago
cross-rotate.frag adding non edited chapters 10 years ago
cross-scale.frag adding non edited chapters 10 years ago
cross-translate.frag adding non edited chapters 10 years ago
cross.frag adding non edited chapters 10 years ago
index.html adding non edited chapters 10 years ago
matrixes.png adding non edited chapters 10 years ago
yuv.frag adding non edited chapters 10 years ago

README.md

2D Matrixes

Translate

In the previous chapter we learn how to make some shapes. We are already familiar with values between 0.0 and 1.0, and the trick to move the shapes we previusly work with is moving the coordinate system it self. We can achive that by simply adding a vector to the st variable that contain the normalized position of the coordinate of the fragment. By doing that the hole space coordinates move it self.

Now try the following excersises:

  • Uncomment line 33 of the above code to see how the space it self is shifted around.

  • Using u_time together with the shaping functions move the small cross around in an interesting way. Search for a specify quality on motion you are interested on (recording something from the "real world" first could be useful). It could be the come and go of the waves, a pendulum movement, a bouncing ball, a car accelerating, a bicycle stoping.

Rotations

To rotate objects we also need to move the entire space system. For that we are going to use a matrix. Matrixes are organized set of numbers in columns and rows, that are multiply by vectors following a precise set of rules, that modify the values of the vector in a particular way.

GLSL have native support for two, three and four dimensional matrixes: mat2 (2x2), mat3 (3x3) and mat4 (4x4) together with a matrix specific functions ( matrixCompMult() ) beside the multiplication (*) operator.

Based on how matrixes behave is posible to construct matrixes that produces specific behaviur. 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 to the following code of a function that constructs a 2D rotation matrix. This function follows the above formula that rotates 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 have been drawing shapes this is not exactly what we want. Our cross shape is draw in the center of the canvas which correspond 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, then rotate the space to finally move it back to the original place.

Note that we need to multiply the rotation matrix for the position vector to return a rotated vector which in our example is just the original position variable that we are over writing. If you want to rotate different elements in different proportions you need to “preserve” the original coordinate system by assigning another vector.

Try the following excersices:

  • Uncomment line 40 of above code and pay atention to what happens.

  • Comment the translations before and after the rotations on line 35 and 37 and observe the consecuences.

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

Scale

So we saw how matrixes were use to translate and rotate object on space (more precise transform the coordinate system and by that rotate and move them). If you have use 3D modeling software or if you have use some push and pop matrix function in processing you will know that also matrixes can be use to scale the size of an object.

Following the previus formula we can understand how to make a 2D scaling matrix.

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

Do the following excersises to understand deeply how it works

  • Uncommenting line 40 of above code to see the space coordinate being scale.

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

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

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

Other uses for matrixes: color - YUV

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

The following code is an interesting opportunity to use matrix operations on GLSL to transform colors from one mode to the other one.

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