Fernando Jerezさんのプロフィール画像

Fernando Jerezさんのイラストまとめ


Bad seed, wrong RNG.

Generative art, 3D printing, and random stuff.
Artblocks, Hodlers, Braindrops, Highlight, Fxhash...
fernandojerez.com

フォロー数:1904 フォロワー数:4144

Building the 3D mesh making a shell with HE_Mesh library for Processing (thanks! ) ....next step: shrinking (for tolerances) & chamfer

0 7

This thing can virtually grow upwards endlessly

0 12

Last step (but maybe the most difficult part for me): Adding columns for a 3d printable figure.

0 7

Round 2 of my 'Random marble run generator' for 3D printing. Now with bridges/underpasses.
Changed the 'path' generation algorithm and the tileset.
Will try to explain the construction process in the thread below. Made with Processing

35 199

mmmm....... not now. the maze has solid walls under the track but i'm sure there's a way to do it

0 3

Step 5: Replace these blocks with 3D models for a nice marble run!

0 28

void setup(){
size(600,600,P3D);
fill(#E31717,80);
noStroke();
}
void draw(){
translate(300,300);
float f = frameCount*.01;
rotateX(f);
rotateY(f);
rotateZ(f);
lights();
box(max(0,400-f*20));
}

go!!

15 77