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/09
Patricio Gonzalez Vivo 8b9ad86286 patterns + iching 9 years ago
..
README.md patterns + iching 9 years ago
brick.jpg adding non edited chapters 10 years ago
bricks.frag fixing some stuff 9 years ago
checks.frag fixing some stuff 9 years ago
cross.frag fixing some stuff 9 years ago
deco.frag fixing some stuff 9 years ago
diamondtiles.frag fixing some stuff 9 years ago
dots.frag fixing some stuff 9 years ago
dots1.frag fixing some stuff 9 years ago
dots2.frag fixing some stuff 9 years ago
dots3.frag fixing some stuff 9 years ago
dots4.frag fixing some stuff 9 years ago
fine-grid.frag Adding grid and stripes 9 years ago
geometricpatters.png adding non edited chapters 10 years ago
grid-making.frag fixing some stuff 9 years ago
grid.frag fixing some stuff 9 years ago
iching-01.frag patterns + iching 9 years ago
iching.frag credits and fixes 9 years ago
index.html fixing some stuff 9 years ago
lines.frag Adding grid and stripes 9 years ago
marching_dots.frag patterns 9 years ago
mirrortiles.frag fixing some stuff 9 years ago
nuts.frag fixing some stuff 9 years ago
rotatedtiles.frag fixing some stuff 9 years ago
sidegrid.frag fixing some stuff 9 years ago
tartan.jpg fixing some stuff 9 years ago
truchet-00.png adding non edited chapters 10 years ago
truchet-01.png adding non edited chapters 10 years ago
truchet.frag patterns 9 years ago
warmerdam.jpg adding non edited chapters 10 years ago
zigzag.frag adding patterns 10 years ago

README.md

Patterns

Since shader programs are executed by pixel-by-pixel it doesn't matter how much you repeat a shape - the number of calculations stays constant. This means that fragment shaders are particulary suitable for tile patterns.

Nina Warmerdam - The IMPRINT Project (2013)

In this chapter we are going to apply what we've learned so far and repeat it along a canvas. Like in previous chapters, our strategy will be based on multiplying the space coordinates (between 0.0 and 1.0), so the shapes we draw between the values 0.0 and 1.0 will be repeated to make a grid.

"The grid provides a framework within which human intuition and invention can operate and that it can subvert. Within the chaos of nature patterns provide a constrast and promise of order. From early patterns on pottery to geometric mosaics in Roman baths, people have long used grids to enhance their lives with decoration." 10 PRINT, Mit Press, (2013)

First let's remember the fract() function, which is in essence the modulo of one (mod(x,1.0)) because it returns the fractional part of a number. In other words, fract() returns the number after the floating point. Our normalized coordinate system variable (st) already goes from 0.0 to 1.0 so it doesn't make sense to do something like:

void main(){
	vec2 st = gl_FragCoord.xy/u_resolution;
	vec3 color = vec3(0.0);
    st = fract(st);
	color = vec3(st,0.0);
	gl_FragColor = vec4(color,1.0);
}

But if we scale the normalized coordinate system up - let's say by three - we will get three sequences of linear interpolations between 0-1: the first one between 0-1, the second one for the floating points between 1-2 and the third one for the floating points between 2-3.

Now it's time to draw something on each subspace in the same way we did in previous chapters, by uncommenting line 27. Because we are multiplying equally in x and y the aspect ratio of the space doesn't change and shapes will be as expected.

Try some of the following exercises to get a deeper understanding:

  • Try multiplying the space by different numbers. Try with floating point values and also with different values for x and y.

  • Make a reusable function of this tiling trick.

  • Divide the space into 3 rows and 3 columns. Find a way to know in which column and row the thread is and use that to change the shape that is displaying. Try to compose a tic-tac-toe match.

Apply matrixes inside patterns

Since each subdivision or cell is a smaller version of the normalized coordinate system we have already been using we can apply a matrix transformation to it in order to translate, rotate or scale the space inside.

  • Think on intersting ways of animating this pattern. Think on color, on shapes and motion. Make three different animations.

  • By composing diferent shapes recreate more complicated patterns

Vector Pattern Scottish Tartan By Kavalenkava

Offset patterns

So let's say we want to imitate a brick wall. Looking at the wall, you can see a half brick offset on x in every other row. How we can do that?

As a first step we need to know if the row of our thread is an even or odd number, because we can use that to determine if we need to offset the x in that row.

we have to fix these next two paragraphs together

For that we are going to use fract() again but with the coordinates at the double of space. Take a look to the folowing formula and how it looks like.

By multiplying x by a half the space coordinate duplicate it size (which is the oposite of what we have been doing where we multiply the st and the space got shrinked). Let's say we are in position 1.0 (not even) we divide by two will be 0.5, while if the position was 2.0 (even) we devide by two the result will be 1.0. For values over 2.0, fract() will wrap them up and start again and again. This means the return value of this function will give numbers bellow 0.5 for not even numbers and above 0.5 for even. Isn't this super help full?

fix the previous two paragraphs with Jen

Now we can apply some offset to odd rows to give a brick effect to our tiles. Check lines 14 and 15 of the following code, there we are using the function we just describe together with an if statement to detect even rows and give them an offset on x of half a space.

Note also that uncommenting line 34 will streach the aspect ration of the coordinate system to mimic the aspect of a "modern brick". As we did before by uncomenting line 42 you can see how the coordinate system looks maped on RED and GREEN.

  • Try animating this by moving the offset acording to time?

  • Make another animation where even rows moves to the left while, not even move to the right.

  • Can you repete this effect but with colums?

  • Try combining an offset on x and y axis to get something like this:

Truchet Tiles

Now that we've learned how to tell if our cell is in an even or odd row or column, it's possible to reuse a single design element depending on its position. Consider the case of the Truchet Tiles where a single design element can be presented in four different ways:

By changing the pattern across tiles, it's possible to contruct an infinite set of complex designs.

Pay close attention to the function rotateTilePattern(), which subdivides the space into four cells and assigns an angle of rotation to each one.

  • Comment, uncomment and duplicate lines 73 to 76 to compose new designs.

  • Change the black and white triangle for other element like: half cicles, rotated squares or lines.

  • Think and code other patterns where the elements are rotated acording to their position.

  • Make a pattern that change other properties cording to their position.

  • Think on something else that is not necesary a pattern where you can apply the princeples that we saw in this section. (Ex: iching hexagrams)

Making your own rules

Making procedural patterns is a mental exercise in finding minimal reusable elements. This practice is old; we as a species have been using grids and patterns to decorate textiles, floors and borders of objects for a long time: from meanders patterns on ancient Greece, to chinise lattise design the pleasure of repetition and variation has caught our imagination. Take some time to look at decorative patterns and see how artists and designers have a long history of challenging the fine edge between the predictability of order and the surprise of variation and chaos. From Arabic geometrical patterns, to gorgeous affrican fabric designs, there is an entire universe of patterns to learn from.

Franz Sales Meyer - A handbook of ornament (1920)

With this chapter we end this sections about Algorithmic Drawing. On the following chapters we will how to bring some entropy and produce Generative Designs.