Distort characters. Draw by openFrameworks

[ Video ]

[ About ]
文字を捻じ曲げる。

Twist the letters.

[ Source ]

[ Link ]
https://github.com/junkiyoshi/Insta20210717

Teleport font. Draw by openFrameworks

[ Video ]

[ About ]
天地をひっくり返す。
y += ofNoise() > 0.5 ? ofMap(-100, 100) : ofMap(100, -100)

Turn the top and bottom over.
+= ofNoise() > 0.5 ? ofMap(-100, 100) : ofMap(100, -100)

[ Source ]

[ Link ]
https://github.com/junkiyoshi/Insta20210716

out-of-body experience. Draw by openFrameworks

[ Video ]

[ About ]
文字の座標を2回に分けて回転させる。
ofTrueTypeFont.getStringAsPoints()で取得した座標にglm::highp_mat4で回転した座標を計算する。

Rotate the coordinates of a character twice.
Calculate the coordinates rotated by glm::highp_mat4 to the coordinates retrieved by ofTrueTypeFont.getStringAsPoints().

[ Source ]

[ Link ]
https://github.com/junkiyoshi/Insta20210715