Click here to Skip to main content
15,894,337 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: The joys of 3D printing Pin
Lorenzo Bertolino30-Jun-21 20:42
professionalLorenzo Bertolino30-Jun-21 20:42 
GeneralRe: The joys of 3D printing Pin
Slacker00730-Jun-21 20:55
professionalSlacker00730-Jun-21 20:55 
GeneralRe: The joys of 3D printing Pin
Rage30-Jun-21 0:55
professionalRage30-Jun-21 0:55 
GeneralRe: The joys of 3D printing Pin
OriginalGriff30-Jun-21 1:52
mveOriginalGriff30-Jun-21 1:52 
GeneralRe: The joys of 3D printing Pin
David O'Neil30-Jun-21 4:47
professionalDavid O'Neil30-Jun-21 4:47 
GeneralRe: The joys of 3D printing Pin
RedDk30-Jun-21 8:02
RedDk30-Jun-21 8:02 
GeneralRe: The joys of 3D printing Pin
David O'Neil30-Jun-21 15:23
professionalDavid O'Neil30-Jun-21 15:23 
GeneralRe: The joys of 3D printing Pin
harvyk030-Jun-21 19:47
harvyk030-Jun-21 19:47 
I use OpenSCAD, it's a coding like language for creating 3d objects.
As a software developer by day, I find it rather easy, simply because I understand methods, loops, if's and objects.

To give you an idea of the language, something like this:

for(i = [0:9]) {
translate([i * 10,0,0]) cylinder(d = 5, h = 50, $fn=50);
}


would give you 10 identical 5mm wide by 50mm high cylinders, at 10mm distance apart on the x axis.

It can generate stl files for passing to the slicer. I have yet to have a problem with the slicer thinking the internals of any object is empty, and I have no problem in overlapping objects (I commonly place objects 0.1mm inside each other).

I also like that I can split complex parts into their own modules (methods) and then preview the entire printed object inside openscad, then print off each section by itself. I've found I've been able to do joins between components far better and more accurately than by simply slicing a model into two using the slicer.

To make things easier, there is also a community of people who design parts inside OpenSCAD. From simple libraries like a triangles library, to more complex libraries like gears, which can all be downloaded for free as well.

As for what I'm doing with the pieces I print, well I'm building a full sized functioning jumbo jet (boeing 747-400) simulator. I'm printing panels, controls, buttons and switches (the sort that you can't just get at your local electronics stores), and every piece has been designed with OpenSCAD.
GeneralRe: The joys of 3D printing Pin
Slacker00730-Jun-21 21:00
professionalSlacker00730-Jun-21 21:00 
GeneralRe: The joys of 3D printing Pin
wt2930-Jun-21 21:11
professionalwt2930-Jun-21 21:11 
GeneralRe: The joys of 3D printing Pin
Alan Faiers30-Jun-21 22:51
Alan Faiers30-Jun-21 22:51 
GeneralRe: The joys of 3D printing Pin
rcole1171-Jul-21 3:07
rcole1171-Jul-21 3:07 
GeneralRe: The joys of 3D printing Pin
mikebres1-Jul-21 4:37
mikebres1-Jul-21 4:37 
GeneralRe: The joys of 3D printing Pin
scosta_FST1-Jul-21 4:49
scosta_FST1-Jul-21 4:49 
GeneralRe: The joys of 3D printing Pin
davecasdf1-Jul-21 5:20
davecasdf1-Jul-21 5:20 
GeneralRe: The joys of 3D printing Pin
jmaida1-Jul-21 7:47
jmaida1-Jul-21 7:47 
GeneralWSO CCC OTD 2021-06-30 Pin
OriginalGriff29-Jun-21 21:46
mveOriginalGriff29-Jun-21 21:46 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
pkfox29-Jun-21 22:11
professionalpkfox29-Jun-21 22:11 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
OriginalGriff29-Jun-21 22:26
mveOriginalGriff29-Jun-21 22:26 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
pkfox29-Jun-21 22:36
professionalpkfox29-Jun-21 22:36 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
OriginalGriff29-Jun-21 22:38
mveOriginalGriff29-Jun-21 22:38 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
pkfox29-Jun-21 22:57
professionalpkfox29-Jun-21 22:57 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
DerekT-P29-Jun-21 23:02
professionalDerekT-P29-Jun-21 23:02 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
OriginalGriff29-Jun-21 23:27
mveOriginalGriff29-Jun-21 23:27 
GeneralRe: WSO CCC OTD 2021-06-30 Pin
pkfox30-Jun-21 4:54
professionalpkfox30-Jun-21 4:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.