discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Deprecated fillet

JD
John David
Fri, Nov 1, 2024 7:02 PM

I agree.  Nice trick with labeling the points.  I hope I remember that when
I need it next ;-)

EBo -

On Thu, Oct 31, 2024 at 11:49 PM Caddiy via Discuss <
discuss@lists.openscad.org> wrote:

Michael Marx (spintel) wrote:


From: Michael Marx (spintel) via Discuss [mailto:
discuss@lists.openscad.org] Sent: Fri, 1 Nov 2024 14:18 To: 'OpenSCAD
general discussion Mailing-list' Cc: Michael Marx (spintel) Subject:
[OpenSCAD] Re: Deprecated fillet

//code if it helps

p=[ [0, 0], [0, 10], for (i=[0:10:90]) [2sin(i)+2, 2cos(i)+8], for
(i=[-180:-20:-270]) [2sin(-i)+6, 2cos(-i)+6], [8, 4], [8, 0], ];
polygon(p); echo(p=p); for (i=[0:len(p)-1]) translate(p[i]) {
color("black") { echo(i=i,p[i]); circle(0.1); text(size=.52,str(i)); } }

From: Michael Marx (spintel) via Discuss [mailto:
discuss@lists.openscad.org] Sent: Fri, 1 Nov 2024 14:10 To: 'OpenSCAD
general discussion Mailing-list' Cc: Michael Marx (spintel) Subject:
[OpenSCAD] Re: Deprecated fillet

This is your problem. 11 to 12-16 to 17, causes those spikes. (Note I
increased the step size)

From: Caddiy via Discuss [mailto:discuss@lists.openscad.org] Sent: Fri, 1
Nov 2024 13:42 To: discuss@lists.openscad.org Cc: mikeonenine@web.de
Subject: [OpenSCAD] Re: Deprecated fillet

mikeonenine@web.de wrote: The first pic shows what I want (preferably
without an error message). Sorry, the pix came out the wrong way round too.
The last pic is what I want.

The code didn’t work at first but now it does.

I like the numbered coordinates - very useful for debugging. Thanx!


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

I agree. Nice trick with labeling the points. I hope I remember that when I need it next ;-) EBo - On Thu, Oct 31, 2024 at 11:49 PM Caddiy via Discuss < discuss@lists.openscad.org> wrote: > Michael Marx (spintel) wrote: > > ------------------------------ > > From: Michael Marx (spintel) via Discuss [mailto: > discuss@lists.openscad.org] Sent: Fri, 1 Nov 2024 14:18 To: 'OpenSCAD > general discussion Mailing-list' Cc: Michael Marx (spintel) Subject: > [OpenSCAD] Re: Deprecated fillet > > //code if it helps > > p=[ [0, 0], [0, 10], for (i=[0:10:90]) [2*sin(i)+2, 2*cos(i)+8], for > (i=[-180:-20:-270]) [2*sin(-i)+6, 2*cos(-i)+6], [8, 4], [8, 0], ]; > polygon(p); echo(p=p); for (i=[0:len(p)-1]) translate(p[i]) { > color("black") { echo(i=i,p[i]); circle(0.1); text(size=.52,str(i)); } } > ------------------------------ > > From: Michael Marx (spintel) via Discuss [mailto: > discuss@lists.openscad.org] Sent: Fri, 1 Nov 2024 14:10 To: 'OpenSCAD > general discussion Mailing-list' Cc: Michael Marx (spintel) Subject: > [OpenSCAD] Re: Deprecated fillet > > This is your problem. 11 to 12-16 to 17, causes those spikes. (Note I > increased the step size) > ------------------------------ > > From: Caddiy via Discuss [mailto:discuss@lists.openscad.org] Sent: Fri, 1 > Nov 2024 13:42 To: discuss@lists.openscad.org Cc: mikeonenine@web.de > Subject: [OpenSCAD] Re: Deprecated fillet > > mikeonenine@web.de wrote: The first pic shows what I want (preferably > without an error message). Sorry, the pix came out the wrong way round too. > The last pic is what I want. > > The code didn’t work at first but now it does. > > I like the numbered coordinates - very useful for debugging. Thanx! > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >