discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

New (?) way to print bores without support

J
jon
Sat, May 20, 2023 8:17 PM

About 2/3 of the way through this video, we see a new way to 3D print
bores which require no support material.

I wonder if this approach could be incorporated into any of the
libraries that we commonly use

https://www.youtube.com/watch?v=KBuWcT8XkhA

Jon

About 2/3 of the way through this video, we see a new way to 3D print bores which require no support material. I wonder if this approach could be incorporated into any of the libraries that we commonly use https://www.youtube.com/watch?v=KBuWcT8XkhA Jon
LM
Leonard Martin Struttmann
Sat, May 20, 2023 8:28 PM

Yup.  I tried that.  I found it to be simpler to use this beveled step:

//*************************************************************
module verticalHoleWithBevelStep( screwInfo, length, layerHeight )
//*************************************************************
// The default orientation has the screw head at the bottom, flush with
// the xy plane.
{
threadD = SCREW_HOLE_SCALE_FACTOR * screwInfo[0];
headD  = SCREW_HOLE_SCALE_FACTOR * screwInfo[1];
headZ  = SCREW_HOLE_SCALE_FACTOR * screwInfo[2];
adjustedLength = SCREW_HOLE_SCALE_FACTOR * length;

union()
{
cylinder( h=headZ, d=headD );

translate( [ 0, 0, headZ ] )
cylinder( h=3*layerHeight, d1=headD, d2=threadD );

cylinder( h=adjustedLength, d=threadD );

}
}
//*************************************************************

difference()
{
L_cube( [ 10,10,10], center="xy" );

verticalHoleWithBevelStep( Screw_info("M3"), 10 , 0.2 );
}

On Sat, May 20, 2023 at 3:17 PM jon jon@jonbondy.com wrote:

About 2/3 of the way through this video, we see a new way to 3D print
bores which require no support material.

I wonder if this approach could be incorporated into any of the
libraries that we commonly use

https://www.youtube.com/watch?v=KBuWcT8XkhA

Jon


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

Yup. I tried that. I found it to be simpler to use this beveled step: //************************************************************* module verticalHoleWithBevelStep( screwInfo, length, layerHeight ) //************************************************************* // The default orientation has the screw head at the bottom, flush with // the xy plane. { threadD = SCREW_HOLE_SCALE_FACTOR * screwInfo[0]; headD = SCREW_HOLE_SCALE_FACTOR * screwInfo[1]; headZ = SCREW_HOLE_SCALE_FACTOR * screwInfo[2]; adjustedLength = SCREW_HOLE_SCALE_FACTOR * length; union() { cylinder( h=headZ, d=headD ); translate( [ 0, 0, headZ ] ) cylinder( h=3*layerHeight, d1=headD, d2=threadD ); cylinder( h=adjustedLength, d=threadD ); } } //************************************************************* difference() { L_cube( [ 10,10,10], center="xy" ); verticalHoleWithBevelStep( Screw_info("M3"), 10 , 0.2 ); } On Sat, May 20, 2023 at 3:17 PM jon <jon@jonbondy.com> wrote: > About 2/3 of the way through this video, we see a new way to 3D print > bores which require no support material. > > I wonder if this approach could be incorporated into any of the > libraries that we commonly use > > https://www.youtube.com/watch?v=KBuWcT8XkhA > > Jon > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
RD
Revar Desmera
Sat, May 20, 2023 11:34 PM

I’ve used that technique in the printable 3D printer design that inspired the BOSL and BOSL2 libraries. It’s unclear to me, however, how to genericize that pattern for a library, as it is extremely dependent on the shape of the area to be bridged.

-Revar

On May 20, 2023, at 1:18 PM, jon jon@jonbondy.com wrote:

About 2/3 of the way through this video, we see a new way to 3D print bores which require no support material.

I wonder if this approach could be incorporated into any of the libraries that we commonly use

https://www.youtube.com/watch?v=KBuWcT8XkhA

Jon


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I’ve used that technique in the printable 3D printer design that inspired the BOSL and BOSL2 libraries. It’s unclear to me, however, how to genericize that pattern for a library, as it is extremely dependent on the shape of the area to be bridged. -Revar > On May 20, 2023, at 1:18 PM, jon <jon@jonbondy.com> wrote: > > About 2/3 of the way through this video, we see a new way to 3D print bores which require no support material. > > I wonder if this approach could be incorporated into any of the libraries that we commonly use > > https://www.youtube.com/watch?v=KBuWcT8XkhA > > Jon > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org
NH
nop head
Sun, May 21, 2023 11:10 AM

NopSCADlib can do it. You pass a child which is the 2D profile of the hole
below. It's called hanging hole

On Sun, 21 May 2023, 00:35 Revar Desmera, revarbat@gmail.com wrote:

I’ve used that technique in the printable 3D printer design that inspired
the BOSL and BOSL2 libraries. It’s unclear to me, however, how to
genericize that pattern for a library, as it is extremely dependent on the
shape of the area to be bridged.

-Revar

On May 20, 2023, at 1:18 PM, jon jon@jonbondy.com wrote:

About 2/3 of the way through this video, we see a new way to 3D print

bores which require no support material.

I wonder if this approach could be incorporated into any of the

libraries that we commonly use

https://www.youtube.com/watch?v=KBuWcT8XkhA

Jon


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

NopSCADlib can do it. You pass a child which is the 2D profile of the hole below. It's called hanging hole On Sun, 21 May 2023, 00:35 Revar Desmera, <revarbat@gmail.com> wrote: > I’ve used that technique in the printable 3D printer design that inspired > the BOSL and BOSL2 libraries. It’s unclear to me, however, how to > genericize that pattern for a library, as it is extremely dependent on the > shape of the area to be bridged. > > -Revar > > > > On May 20, 2023, at 1:18 PM, jon <jon@jonbondy.com> wrote: > > > > About 2/3 of the way through this video, we see a new way to 3D print > bores which require no support material. > > > > I wonder if this approach could be incorporated into any of the > libraries that we commonly use > > > > https://www.youtube.com/watch?v=KBuWcT8XkhA > > > > Jon > > _______________________________________________ > > OpenSCAD mailing list > > To unsubscribe send an email to discuss-leave@lists.openscad.org > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
DP
David Phillip Oster
Sun, May 21, 2023 5:05 PM

I wrote about it, with cod and examples
https://www.reddit.com/r/openscad/comments/13nlnvk/images_to_go_with_how_to_3d_print_bores_without/

On Sat, May 20, 2023 at 1:18 PM jon jon@jonbondy.com wrote:

About 2/3 of the way through this video, we see a new way to 3D print
bores which require no support material.

I wonder if this approach could be incorporated into any of the
libraries that we commonly use

https://www.youtube.com/watch?v=KBuWcT8XkhA

Jon


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I wrote about it, with cod and examples https://www.reddit.com/r/openscad/comments/13nlnvk/images_to_go_with_how_to_3d_print_bores_without/ On Sat, May 20, 2023 at 1:18 PM jon <jon@jonbondy.com> wrote: > About 2/3 of the way through this video, we see a new way to 3D print > bores which require no support material. > > I wonder if this approach could be incorporated into any of the > libraries that we commonly use > > https://www.youtube.com/watch?v=KBuWcT8XkhA > > Jon > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >