Change number. Draw by openFrameworks

[ Video ]

[ About ]
Noise関数で0から9までの数字を変化。
ofTrueTypeFont.getStringAsPoints()で文字座標を取得する。

Change the numbers from 0 to 9 with the Noise function.
Get the character coordinates with ofTrueTypeFont.getStringAsPoints().

[ Source ]

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

[ Kinako ]

Allow trains. Draw by openFrameworks

[ Video ]

[ About ]
矢印の連結。
重ならないようにしたら少し不思議な動きに。

Arrow linkage.
I tried not to overlap them, but it made the movement a little strange.

[ Source ]

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

[ Kinako ]

Gap to static. Draw by openFrameworks

[ Video ]

[ About ]
昨日の投稿の反転版。
移動量を下のように制動をつける。
auto power = gap_param 0.5 ? 0 : ofMap(gap_param, 0, 0.5, 1, 0);

Reversed version of yesterday’s post.
Braking the amount of movement as shown below.
auto power = gap_param 0.5 ? 0 : ofMap(gap_param, 0, 0.5, 1, 0);

[ Source ]

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

[ Kinako ]