//=time() ?>
Building the 3D mesh making a shell with HE_Mesh library for Processing (thanks! @wblut) ....next step: shrinking (for tolerances) & chamfer
Last step (but maybe the most difficult part for me): Adding columns for a 3d printable figure.
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 @ProcessingOrg #creativecoding #3dprint
@joeltelling mmmm....... not now. the maze has solid walls under the track but i'm sure there's a way to do it
@ProcessingOrg Step 5: Replace these blocks with 3D models for a nice marble run!
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!! #つぶやきProcessing