discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

rounding bottom edge

JW
Joe Weinpert
Sun, May 21, 2023 2:57 PM

Have this prismoid:

prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 );

How do I add a .5 radius rounded bottom?

Joe Weinpert
skidrowacademy.com

[image: 2023-05-21_10-56-00.jpg]

Have this prismoid: prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 ); How do I add a .5 radius rounded bottom? Joe Weinpert skidrowacademy.com [image: 2023-05-21_10-56-00.jpg]
SP
Sanjeev Prabhakar
Mon, May 22, 2023 12:42 AM

made through python code
made a prism without bottom radius
[image: Screenshot 2023-05-22 at 6.04.45 AM.png]
added plane at the bottom end
[image: Screenshot 2023-05-22 at 6.06.44 AM.png]
created fillet between the plane and the prism
[image: Screenshot 2023-05-22 at 6.09.32 AM.png]
final prismoid by adding fillet with top section
[image: Screenshot 2023-05-22 at 6.11.04 AM.png]

On Sun, 21 May 2023 at 20:28, Joe Weinpert joe.weinpert@gmail.com wrote:

Have this prismoid:

prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 );

How do I add a .5 radius rounded bottom?

Joe Weinpert
skidrowacademy.com

[image: 2023-05-21_10-56-00.jpg]


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

made through python code made a prism without bottom radius [image: Screenshot 2023-05-22 at 6.04.45 AM.png] added plane at the bottom end [image: Screenshot 2023-05-22 at 6.06.44 AM.png] created fillet between the plane and the prism [image: Screenshot 2023-05-22 at 6.09.32 AM.png] final prismoid by adding fillet with top section [image: Screenshot 2023-05-22 at 6.11.04 AM.png] On Sun, 21 May 2023 at 20:28, Joe Weinpert <joe.weinpert@gmail.com> wrote: > > Have this prismoid: > > prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 ); > > How do I add a .5 radius rounded bottom? > > Joe Weinpert > skidrowacademy.com > > [image: 2023-05-21_10-56-00.jpg] > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
RD
Revar Desmera
Tue, May 23, 2023 1:43 AM

BOSL2 can do this using rounded_prism():

include <BOSL2/std.scad>
include <BOSL2/rounding.scad>
rounded_prism(
rect([11,5]),
rect([12,6]),
height=1,
joint_top=0,
joint_bot=0.5,
joint_sides=0.25);

-Revar

On May 21, 2023, at 7:57 AM, Joe Weinpert joe.weinpert@gmail.com wrote:

Have this prismoid:

prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 );

How do I add a .5 radius rounded bottom?

Joe Weinpert
skidrowacademy.com http://skidrowacademy.com/

<2023-05-21_10-56-00.jpg>


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

BOSL2 can do this using `rounded_prism()`: include <BOSL2/std.scad> include <BOSL2/rounding.scad> rounded_prism( rect([11,5]), rect([12,6]), height=1, joint_top=0, joint_bot=0.5, joint_sides=0.25); -Revar > On May 21, 2023, at 7:57 AM, Joe Weinpert <joe.weinpert@gmail.com> wrote: > > > Have this prismoid: > > prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 ); > > How do I add a .5 radius rounded bottom? > > Joe Weinpert > skidrowacademy.com <http://skidrowacademy.com/> > > <2023-05-21_10-56-00.jpg> > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org
JW
Joe Weinpert
Tue, May 23, 2023 1:26 PM

Thanks to all ... and Revar whose BOSL 2 makes things easy once what you
are looking for is found.

Joe Weinpert
(440) 796-7165
joe.weinpert@gmail.com

On Mon, May 22, 2023 at 9:43 PM Revar Desmera revarbat@gmail.com wrote:

BOSL2 can do this using rounded_prism():

include <BOSL2/std.scad>
include <BOSL2/rounding.scad>
rounded_prism(
rect([11,5]),
rect([12,6]),
height=1,
joint_top=0,
joint_bot=0.5,
joint_sides=0.25);

-Revar

On May 21, 2023, at 7:57 AM, Joe Weinpert joe.weinpert@gmail.com wrote:

Have this prismoid:

prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 );

How do I add a .5 radius rounded bottom?

Joe Weinpert
skidrowacademy.com

<2023-05-21_10-56-00.jpg>


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

Thanks to all ... and Revar whose BOSL 2 makes things easy once what you are looking for is found. Joe Weinpert (440) 796-7165 joe.weinpert@gmail.com On Mon, May 22, 2023 at 9:43 PM Revar Desmera <revarbat@gmail.com> wrote: > BOSL2 can do this using `rounded_prism()`: > > include <BOSL2/std.scad> > include <BOSL2/rounding.scad> > rounded_prism( > rect([11,5]), > rect([12,6]), > height=1, > joint_top=0, > joint_bot=0.5, > joint_sides=0.25); > > > > -Revar > > > On May 21, 2023, at 7:57 AM, Joe Weinpert <joe.weinpert@gmail.com> wrote: > > > Have this prismoid: > > prismoid( size1 = [11,5], size2 = [12,6], h = 1, rounding = .25 ); > > How do I add a .5 radius rounded bottom? > > Joe Weinpert > skidrowacademy.com > > <2023-05-21_10-56-00.jpg> > _______________________________________________ > 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 >
RD
Revar Desmera
Tue, May 23, 2023 10:44 PM

On May 23, 2023, at 6:27 AM, Joe Weinpert joe.weinpert@gmail.com wrote:

Thanks to all ... and Revar whose BOSL 2 makes things easy once what you are looking for is found.

I can’t take credit for this one. Adrian wrote pretty much all of rounding.scad.

-Revar

> On May 23, 2023, at 6:27 AM, Joe Weinpert <joe.weinpert@gmail.com> wrote: >  > Thanks to all ... and Revar whose BOSL 2 makes things easy once what you are looking for is found. I can’t take credit for this one. Adrian wrote pretty much all of rounding.scad. -Revar