design challenge

Design a typeface based on the meaning of a word using rule-based logic.

一期一会

ichi go ichi eone time, one meeting, a 4-character Japanese phrase meaning to cherish the moment and what you have, for it will not last forever, fleeting. 

%e4%b8%80%e6%9c%9f%e4%b8%80%e4%bc%9a

Created in 2008, Innoshima, Japan

img_1994

Coded in 2016, New York City

 

 

 

 

 

 

 

 

 

 

一期一会 has always been a phrase I’ve held near and dear to my heart (regardless of whether or not I am able to appreciate each moment as it comes). I studied Japanese calligraphy for years and in 2008 I created a scroll of this phrase after studying it for some time.

Image Source: http://www005.upp.so-net.ne.jp/kazu_san/kanji.htm

Image Source: http://www005.upp.so-net.ne.jp/kazu_san/kanji.htm

Kanji is essentially the programming system of the Japanese language, so to bring that complexity and skill to coding was a marriage I wanted to officiate.

the process

The process began with a sketch as a reference for layout and spacing.

fullsizerender-6

RULES:

  1. kanjiGroup at 100, 250 for all characters to be in line with
  2. Spacing of 10 at paths to polygon
  3. At each vector point, an ellipse is drawn (different size for each character)
  4. Color is HSV. Saturation is directly linked to the vectors at x. As x increases,  the saturation increases. ichiPoly.state.vectors[j].x*.09 or ichiPoly.state.vectors[j].x*.12 depending on the character

First I created a group for each character (letter) to be coded into.  I began with the first “ichi” and drew a path for this character. I turned the path into polygons using the example from Rune.js.

screen-shot-2016-10-16-at-5-04-21-pm screen-shot-2016-10-16-at-5-43-16-pm

 

 

 

 

 

 

 

 

 

 

 

 

To add a second “ichi,” I put a second for loop into the the initial for loop that created vectors, and moved the location of this particular poly to start. (code below)

screen-shot-2016-10-16-at-10-53-42-pm

screen-shot-2016-10-17-at-12-11-48-am

 

 

 

 

 

 

 

 

 

challenges

I had a bit of trouble with the location of the last character, “e.” I drew it the same way as the other characters, however it was off, not beginning where I had intended it to. Perhaps that is because I did a “moveTo” right off of start, this may have changed the origin of this character, off-setting it from the rest.

I did have issues with placement of the path versus the drawings on the vectors. In this image you can see that after removing the parent and before removing the strokes, the original path is in a different location than the vector drawings of it. This happened with the “go” and “e” characters. I am guessing this has to do with some move and moveTo functions that I used in the coding off setting these a bit.

I originally wanted the color to be stronger on the left and fade to the right, to illustrate the meaning of 一期一会, where things are fleeting and do not last forever. I could not figure out the right way to map that. The color was directly related to the x values of the vectors. HOWEVER, in Japanese you read top to bottom, right to left, so in that respect the fade happens in the correct direction.

I had a color issue with the last character, where half of it was completely white and it was not fading proportionately as the others. This had to do with a moveTo or move placement. I magically sorted it out but playing with placement.

I ended up making the paths a little thicker in the final character so upon added the vector-based designs, it was too thick and the lines overlapped too much, so I went back and edited the paths, while in the color, vector, shape view.

important pieces of the puzzle

remove parent
remove stroke
path to polygon to polygons to vectors

the code

 

img_1993

img_1994

screen-shot-2016-10-17-at-8-47-34-pm

Play with the code here!