A
A
A
A
A
A
A
A
A

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Starting on the modular typeface exercise

In the same way that we use modularity in our typeface design to compose a larger set of letters from a simple set of shapes, we can do the same thing with our code.

If you only just staretd coding, it's very likely that your programs are only a few lines long. Programs have the tendency to grow large, sometimes very large, into the millions of lines of code. For the purposes of day to day design prototyping you will be dealing with sketches that contain from a few dozens to a low thousands lines of code. But writing your code in a modular fashion will help you make ir reusable across projects and you will progressively get better at this.

Let's look at how to approach modularity in Javascript using the modular alphabet as our guide. Let's start by drawing the A.

Ok, that was easy it only required us to draw one shape. Let's try to draw the letter B, seems a little more challenging. For our b we will use an arc and an ellipse drawn a little bit further down. We will tweak the numbers and positions untill it looks right.

Observe that to draw one letter we needed two shapes, furthermore the relationships in the positions of the shapes are proportional, so if the arc has 80 as it's size, then the position of the circle that completes the b will be displaced to the right and down about half of the size of the arc, so the position of the circle will be 40, 40, and the dimensions of both arc and circle will be the same 80. We could abstract this into a single function and make or program more modular.

The function

The most basic way of putting together things that belong together is by creating a function. Functions help us in two ways, they agglutinate functionalities that belong together into a single unit. Using the example above, we draw the letter b using two graphical elements, we can create a function called draw_b so that these two drawing operations can be grouped into one call, and then every time we need to draw a b instead of drawing the two elements in isolation, we can summon the power of our newly created function and that will do it for us. This ability is crucial in programming and it's where its true power really is. Let's look at how the draw_b functiona would look like.

Now we have encapsulated the two shapes needed to draw our letter b into a single function called draw_b, and we can now draw as many b as we like without having to repeat the arc and the ellipse, and because we are using relative positioning by calling translate and our b is always drawn starting at position 0, 0, we can place it wherever we like.

Another powerful aspect of creating functions is that it allows us to parametrize it's functionalities. Our draw_b function saves us some typing work so far, but it's not very powerful yet. It always draws the same shape, in the same size and it relies on us calling translate first to place it in the right position before we draw it. We could parametrize these aspects of our draw_b function to make it more generic. Parametrizing in this case means turning some of the fixed magic numbers inside of our function into parameters that we feed to the function, so that every time we call it we can create a different version of our letter. In this case I am going to create a parameter called size that will determine the dimensions of our letter b.

Amazing! Now we have a more generic draw_b function that can draw many different kinds of b, small b, medium b and large b.

Observe that to do this, I had to declare the parameter of the function between the parenthesis, and then I had to replace every instance of the number 80 in the previous version for the size variable name, and I also changed every instance of the number 40 for the expression size/2, or half the size. This preserves the relationship we had in the previous function and generalizes it to any size.

We could do this to every letter of our alphabet.