I call this “The Evolution of Tommy”, which documents the various stages of growth and development a Tommy undergoes throughout its life.
The Tommy you know and love is actually only in Stage 3 of development! Crazy!
Found 4 posts.
Search results Show results as topic list.
HOULY Daily Challenge » Day 9 | Motion: Growth
-
- Jake Rice
- 4 posts
- Offline
HOULY Daily Challenge » Day 4 | Elements: Fire
-
- Jake Rice
- 4 posts
- Offline
Kind of esoteric, but I wanted to do pyro solving on mesh surfaces, so here's a stab at that. I haven't implemented any kind of combustion model and my divergence projection step is terrible since it's just the jacobi method and there are plenty of other issues… But the results are fun enough to share, for something i spent an hourish on (okay maybe two or three) 

Edited by Jake Rice - 2020年7月4日 20:55:53
HOULY Daily Challenge » Day 1 | Elements: Earth
-
- Jake Rice
- 4 posts
- Offline
Didn't finish this up until well after the deadline
But I wanted to make something more graphic for my Earth!


Edited by Jake Rice - 2020年7月2日 12:42:29
Technical Discussion » chops wrangle - access min/max value of a channel?
-
- Jake Rice
- 4 posts
- Offline
Weeee first forum post! Here's my attempt at a solution, though there has to be a faster way.
float sample[]; for(float i = 1; i < L ; i++){ float test = chinput(0, C, i); append(sample, test); } float max = max(sample); float min = min(sample);
-
- Quick Links