discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Re: rounding some edges

AM
Adrian Mariano
Mon, Oct 18, 2021 8:12 PM

Here's a way to do this in BOSL2 with a single command (though a
limitation that the number of facets is the same on all the
roundovers).  If you want the bottom not rounded that's easily
accomplished as well.

See here:

https://github.com/revarbat/BOSL2/wiki/rounding.scad#functionmodule-rounded_prism

include<BOSL2/std.scad>
include<BOSL2/rounding.scad>

ra = 15;
wi = 55.6;
ht = 12;
de = 30;

jra = 20;
jother = 3;
rounded_prism(square([wi,de]), square([wi,de-ht*sin(20)]), height=ht,
joint_sides=[jra,jra,jother,jother],
joint_bot=jother, joint_top=jother, splinesteps=25);

On Mon, Oct 18, 2021 at 3:16 PM Algot Runeman via Discuss
discuss@lists.openscad.org wrote:

---------- Forwarded message ----------
From: Algot Runeman algot.runeman@verizon.net
To: discuss@lists.openscad.org
Cc:
Bcc:
Date: Mon, 18 Oct 2021 15:15:44 -0400
Subject: [OpenSCAD] Re: rounding some edges
On 10/18/21 2:58 PM, Ray West wrote:

I use DejaVu Sans Mono in the editor, and also in the console of
openscad. (It was about the best I found to distinguish 1,I,l  and it
puts a dot in the zero) at a reasonably small font size. The console
was the main problem, had to install a later (beta?) version of
openscad to let me change that font.

While I have not implemented it for OpenSCAD, I use a free font called
Atkinson Hyperlegible which addresses character confusion effectively
while attempting to solve some accessibility issues as well.
https://brailleinstitute.org/freefont

---------- Forwarded message ----------
From: Algot Runeman via Discuss discuss@lists.openscad.org
To: discuss@lists.openscad.org
Cc: Algot Runeman algot.runeman@verizon.net
Bcc:
Date: Mon, 18 Oct 2021 15:15:44 -0400
Subject: [OpenSCAD] Re: rounding some edges


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

Here's a way to do this in BOSL2 with a single command (though a limitation that the number of facets is the same on all the roundovers). If you want the bottom not rounded that's easily accomplished as well. See here: https://github.com/revarbat/BOSL2/wiki/rounding.scad#functionmodule-rounded_prism include<BOSL2/std.scad> include<BOSL2/rounding.scad> ra = 15; wi = 55.6; ht = 12; de = 30; jra = 20; jother = 3; rounded_prism(square([wi,de]), square([wi,de-ht*sin(20)]), height=ht, joint_sides=[jra,jra,jother,jother], joint_bot=jother, joint_top=jother, splinesteps=25); On Mon, Oct 18, 2021 at 3:16 PM Algot Runeman via Discuss <discuss@lists.openscad.org> wrote: > > > > > ---------- Forwarded message ---------- > From: Algot Runeman <algot.runeman@verizon.net> > To: discuss@lists.openscad.org > Cc: > Bcc: > Date: Mon, 18 Oct 2021 15:15:44 -0400 > Subject: [OpenSCAD] Re: rounding some edges > On 10/18/21 2:58 PM, Ray West wrote: > > I use DejaVu Sans Mono in the editor, and also in the console of > > openscad. (It was about the best I found to distinguish 1,I,l and it > > puts a dot in the zero) at a reasonably small font size. The console > > was the main problem, had to install a later (beta?) version of > > openscad to let me change that font. > > > While I have not implemented it for OpenSCAD, I use a free font called > Atkinson Hyperlegible which addresses character confusion effectively > while attempting to solve some accessibility issues as well. > https://brailleinstitute.org/freefont > > > ---------- Forwarded message ---------- > From: Algot Runeman via Discuss <discuss@lists.openscad.org> > To: discuss@lists.openscad.org > Cc: Algot Runeman <algot.runeman@verizon.net> > Bcc: > Date: Mon, 18 Oct 2021 15:15:44 -0400 > Subject: [OpenSCAD] Re: rounding some edges > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org