laser cutter design portability

I’ve had my full spectrum engineering gen5 hobby laser for about 8 months, and I’m enjoying using it. I’m not a total newb to using a laser. I had a couple months of intensive usage at Tech Shop years ago.  After that, I bought a CNC Router, and after that a 3d Printer.  I tinker with a lot of different things.

Over the years, I’ve seen a range of design files that people have shared.  For the 3d printer, typically you’d go to Thingiverse to get and share designs that you can use in your device.Thingiverse has some design files for CNC routers…   Some things make sense to share for a 2.5D personal manufacturing device.  And I guess if you’re making 2d things with the laser cutter, then of course you can share all kinds of clip art and whatnot.

A 3d printer is fairly straight forward.  The output is handled by the media you’re printing with. Your slicing software just accounts for everything and spits out machine code to do the right thing.  And things usually go well and you end up with what you were trying to end up with.

If you’re making 3d things from 2d media with the laser cutter, things get more complicated. If you pick up someone’s design on thingiverse, it’s designed for a specific thickness sheet good to cut the shapes out of.  If the design has finger joints or cross braces or is a box of any kind, it has to be designed with parts precisely cut to fit with whatever you’ve chosen to make your project out of.

Exhibit A:

The iPhone 5 stand by Kip

iPhone_5_Stand_by_Kip_-_Thingiverse-2

I like this design. A lot. It’s clean, thoughtful, and looks like it would take all of 10 minutes to cut out.  The description says it’s cut from 4mm thick plexiglass.

I guess “plexiglass” is the same thing as a sheet of acrylic.  So I’d go with a sheet of acrylic. I just went out to my garage and measured easily 20 pieces of acrylic, and NONE of them are 4mm thick.  So if I threw a 4.75mm thick sheet of acrylic onto the laser and ran this file as-is, none of the joints would fit because they’re expecting a thinner material.  So it would be a total waste of time and materials.

So, I’m here to do some wishing.

I wish there was a 3d cad program that would let me draw an abstracted design without specific thicknesses until I know what material I have in my hand that I’m going to use in my project. For the iPhone stand above, we know there are 4 pieces.  So if my wish came true, I could say “here’s the overall dimensions, this piece should have this critical angle, this edge should not be programmatically variable, but the rest of these pieces are dynamic.

iPhone_5_Stand_by_Kip_-_Thingiverse

Oh. I guess that would be a parametric cad program. Anyone ever heard of a parametric cad program aimed at designing for a laser cutter?

april 2013 works in progress

I helped kickstart Full Spectrum Laser’s 5th gen 20×12 hobby deluxe laser last year. They delivered the laser, and I tried and failed really quickly at building my own fume extractor.  I bit the bullet and purchased an industrial strength fume extractor, and now I can use the laser without polluting the air. Yay!  So: game on!

BZZZJJJJJJGSSSHH!!
Cuts so nice you gotta hear it twice.
ideas taking flight
hard to see cousin
more...
More.
More!
MOAR!!

My head is overflowing with new ideas that feed off these initial tests. All very exciting!

3dpixelcam processing 3d pixels from live video

this isn’t even full size!

Many years ago, I wrote a processing sketch to take live video and generate a 3d pixel grid, varying the height of each 3d box based on the brightness of the video pixel it was sampling. And it was good. Times have changed, and so has processing. Now it’s easier to do what I was doing then in regards to accessing the video input and controlling the 3d camera in the sketch.  There aren’t as many bells and whistles on this version as the original, but hey, it works today.

As such, you will need JMyron and Peasycam to run this sketch.

 

/*
* 3dPixelcam
* steve cooley
* http://beatseqr.com
* license for use: creative commons non-commercial attribution share-alike
* Do Not Omit This Information From Whatever You Make With It. Thanks! -steve
*/
import processing.opengl.*;
import peasy.*;
import JMyron.*;
PeasyCam cam; // a virtual, 3d camera control
JMyron m;//a physical, actual camera object
int resolution = 20;
void setup(){
size(640,480, OPENGL);
cam = new PeasyCam(this, 320.0, 240.0, 100.0, 500);
cam.setMinimumDistance(50);
cam.setMaximumDistance(2000);
m = new JMyron();//make a new instance of the object
m.start(width,height);//start a capture at 320×240
m.findGlobs(0);//disable the intelligence to speed up frame rate
println("Myron" + m.version());
rectMode(CENTER);
noStroke();
}
void draw(){
background(255);
lights();
m.update();//update the camera view
int[] img = m.image(); //get the normal image of the camera
float r,g,b;
for(int y=0;y<height;y+=resolution){ //loop through all the pixels 
 for(int x=0;x<width;x+=resolution){ //loop through all the pixels
float av = (red(img[y*width+x])+green(img[y*width+x])+blue(img[y*width+x]))/3.0;
fill(red(img[y*width+x]),green(img[y*width+x]),blue(img[y*width+x]));
pushMatrix();
translate(x,y);
//ellipse(0,0,(255-av)/8.0,(255-av)/8.0);
box(resolution,resolution,(av));
popMatrix();
}
}
}
void keyPressed(){
// m.settings();//click the window to get the settings
resolution -= 2;
if(resolution <=1)
{
resolution = 40;
}
}
public void stop(){
m.stop();//stop the object
super.stop();
}

2013-03-12 Updated to fix wp code manglation

 

3d printed artwork

Lest you think I’ve been languishing in some kind of artless state, Here are some photos of what I’ve been using my 3d printer for on the fine art front. My machine is stable, I understand how to fix it when it stops working, and I’m now using some software that’s letting me really scratch the surface of what I can do to use the 3d printers best traits, versus a laser cutter or cnc router. Pretty cool stuff. More to come.

20120721-021632.jpg

20120721-021654.jpg

20120721-021706.jpg

20120721-021747.jpg

20120721-021817.jpg