Welcome! Log In Create A New Profile

Advanced

Connecting letters as one piece?

Posted by sungod3k 
Connecting letters as one piece?
September 21, 2015 10:06PM
Hey,

Does someone know an openscad script or similar method that can connect text or letters to make them printable as one piece?
Re: Connecting letters as one piece?
September 21, 2015 10:19PM
You can do that in Sketchup pretty easily.


Ultra MegaMax Dominator 3D printer: [drmrehorst.blogspot.com]
Re: Connecting letters as one piece?
September 21, 2015 10:23PM
How is that function called there?
Re: Connecting letters as one piece?
September 21, 2015 10:26PM
It isn't a specific function. Draw the 3D text and add a bar(s) to connect the letters together or draw the text on top of a block.


Ultra MegaMax Dominator 3D printer: [drmrehorst.blogspot.com]
Re: Connecting letters as one piece?
September 21, 2015 11:17PM
Ah I see, that I can do as well, but that requires manual input. I thought more one something that recognizes the horizontal outer dimensions of the letter and puts connectors on it.
Re: Connecting letters as one piece?
September 22, 2015 03:21AM
Hi,

Sometimes what you expect just do not exist.
Probably the manual input is so easy that
there's no reason to program it.

IMHO, each word have its own shape.
Maybe it will be smarter to add a bar,
as the_digital_dentist suggested,
adjusted to fit visualy to the word itself.

++JM
Re: Connecting letters as one piece?
September 22, 2015 04:11AM
Yeah thats true, but I recently printed a job where I had symbols and words and they were supposed to stay together in formation and doing that manually (even with netfabb) was a nightmare effort and timewise.
Re: Connecting letters as one piece?
September 22, 2015 10:11AM
I use Blender for making name plates. As long as you don't mind the cursive type script.
Attachments:
open | download - MMS_20150721_071647-1.jpg (272 KB)
Re: Connecting letters as one piece?
September 22, 2015 11:14AM
OpenSCAD example



union() {
    // 3d Lettering Background Bars
   
 translate([14, 3, 0]) cube([2, 40, 2]);
 translate([27, 3, 0]) cube([2, 40, 2]);       
 translate([14, 23, 0]) cube([13, 2, 2]);   
    
    // Text to Extrude
    rotate([0,0,90])translate([1,-20,0])color("black")linear_extrude(height=5)
    text("Think It", size = 10, h=10, font = "Liberation Sans");
    rotate([0,0,90])translate([1,-32,0])color("black")linear_extrude(height=5)
    text("Print It", size = 10, h=10, font = "Liberation Sans");
 }

Edited 2 time(s). Last edit at 09/22/2015 11:17AM by madmike8.
Sorry, only registered users may post in this forum.

Click here to login