List: discuss@lists.openscad.org
From: David Phillip Oster
Re: Seems OK but errors re unnamed arguments
Sat, Feb 19, 2022 4:22 PM
The easy solution is to always use named arguments
cylinder(h=h, d1=d1, d2=d2, $fn);
cylinder(h=h+.01, d1=d1-2*t, d2=d2-2*t, $fn);
On Sat, Feb 19, 2022 at 11:16 AM Terry wrote:
> As recommended I'm using modules as much as possible. I'd welcome any
> general
> critiques of this one (syntax, method, formatting, anything).