Week 10

FONTS + FACES

This week in class we spoke a bit about typeopgraphy and Andy reminded us that our major projects should have a typographic focus, he was saying it’s easy to get caught up in the coding side of it but the assignment and studio are meant to have a focus on typography. Andy and Karen introduced us to Google Noto Fonts and Font Forge.

Google Noto Fonts

Google Noto Fonts is a font family being developed by Google which aims to support all languages, “Noto is Google’s answer to tofu. The name noto is to convey the idea that Google’s goal is to see no more tofu”.

Font Forge

Font Forge is a free open source font editor. Andy and Karen have mentioned a few times this semester how they think it’s important for students to produce their own typefaces. They have said they beleive it’s important for students and designers to be able to produce a project that they have produced entirely themselves from start to finish including the production of a typeface to the final printing. This is something I’ve always wanted to have a go at and I think I will experiment with this summer.

Andy reminded us of the list of examples made by Karen that were available to us and stressed the importance of referencing any code that you borrow or take from someone elses work.

https://github.com/Simandy/codewords/blob/master/processing/examples.md https://github.com/Simandy/codewords/tree/master/processing

MAJOR PROJECT

PHASE

Following last weeks class I wanted to find a typeface for my project. After being reminded by Win about the Phase typeface I did some more experimenting with it’s possible variations and decided it would be perfect for the project. The font can be edited online and downloaded as whatever varient you come up with as a full set of glyphs. One of the possible outcomes is a font which combines different stroke weights within some of the letterforms, I think this is a really nice way of visualising the idea of a transition from physical to digital.

Three dimensions

In my text Catherine Bernard speaks about Guy Debord’s The Society of the Spectacle, a book written in 1967 that examines the ‘specticle’, “Debord’s term for the everyday manifestation of capitalist-driven phenomena; advertising, television, film and celebrity”. Debord’s text speaks about a future society where all life presents itself as an accumulation of spectacles, everything is a representation. I thought it would be interesting to try and link the ideas in this text into my project as it seemed to strongly influence Catherine Bernard’s text.

My idea is to produce the text in 3D using Cinema4D, drawing on the idea that in a digital utopia even writing and words have become some sort of representation, the words have become ‘physical’ objects, representations of words. Another idea I had was to use symbols instead of letters to tie into the idea of commodity fetishism which Debord speaks about, but I think that might detract from the reading experience.

The Code

Over the week I continued to develop the code and worked on adding in the 3D text. I figured out how to make the text’s transparency go down with the users mic input by mapping it to the alpha of the image, alpha is basically opacity in p5js.

  let vol = mic.getLevel()*40;
  let h = map(vol, 0, 1, 0, 75);
  
  translate(windowWidth/2,windowHeight/2);
  tint(255, h);
  image(fulltext,0,pos,width/2, fulltext.height*width/fulltext.width/2);

I made the different layers of images scroll at different speeds by mapping them to a mouseWheel event and then dividing the number to slow down the movement. The maths is getting a bit intense with these so I may need to clean this up a bit for the final sketch, but it seems to be working well.

  image(rock,windowWidth/6+h*5,pos*3+windowWidth/6,1557/4,1139/4);
  image(cloud,windowWidth/4,pos/2-250,3480/3,1336/3);
  image(cloud,-windowWidth/4,pos/3+300,3480/3,1336/3);
  function mouseWheel(event) {
  print(event.delta);
  pos += event.delta;

Thinking about this as a visualisation of the transition between physical and digital I need to work on the imagery i’m going to use to convey this idea. I want to use images of natural ‘physical’ objects in the foreground and then use imagery that feels futuristic and utopian in the background to try and communicate this idea. I also want to incorperate something that shows physical interaction as disruptive, creating some sort of visual disruption from keys being pressed on the keyboard.

What represents the phycical, what represents the digital?

FINAL v5

PREV.NEXT.HOME