discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

spiral

KE
Karl Exler
Thu, Sep 28, 2023 9:49 AM

Dear all
Is it possible to change the clock (direction) from this formula

poly=circle(5);
spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT);

so that the spiral goes clockwise or counter clickwise?

many thanks in advance.
Karl

P.S.
The orientation-tag does not this job... ;-)

Dear all Is it possible to change the clock (direction) from this formula poly=circle(5); spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT); so that the spiral goes clockwise or counter clickwise? many thanks in advance. Karl P.S. The orientation-tag does not this job... ;-)
AM
Adrian Mariano
Thu, Sep 28, 2023 10:23 AM

Does setting turns=-8 do what you want?

On Thu, Sep 28, 2023 at 5:49 AM Karl Exler karl.exler@meinklang.cc wrote:

Dear all
Is it possible to change the clock (direction) from this formula

poly=circle(5);
spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT);

so that the spiral goes clockwise or counter clickwise?

many thanks in advance.
Karl

P.S.
The orientation-tag does not this job... ;-)


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

Does setting turns=-8 do what you want? On Thu, Sep 28, 2023 at 5:49 AM Karl Exler <karl.exler@meinklang.cc> wrote: > Dear all > Is it possible to change the clock (direction) from this formula > > poly=circle(5); > spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT); > > so that the spiral goes clockwise or counter clickwise? > > many thanks in advance. > Karl > > P.S. > The orientation-tag does not this job... ;-) > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
JB
Jordan Brown
Thu, Sep 28, 2023 3:38 PM

On 9/28/2023 2:49 AM, Karl Exler wrote:

Dear all
Is it possible to change the clock (direction) from this formula

poly=circle(5);
spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT);

so that the spiral goes clockwise or counter clickwise?

You could always mirror it.

On 9/28/2023 2:49 AM, Karl Exler wrote: > Dear all > Is it possible to change the clock (direction) from this formula > > poly=circle(5); > spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT); > > so that the spiral goes clockwise or counter clickwise? You could always mirror it.
L
larry
Thu, Sep 28, 2023 3:51 PM

On Thu, 2023-09-28 at 15:38 +0000, Jordan Brown wrote:

On 9/28/2023 2:49 AM, Karl Exler wrote:
 

Dear all
 Is it possible to change the clock (direction) from this formula
 
 poly=circle(5);
 spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT);
 
 so that the spiral goes clockwise or counter clickwise?

 
 You could always mirror it.

No need.

As Adrian pointed out, 'turns = -8' does it.

On Thu, 2023-09-28 at 15:38 +0000, Jordan Brown wrote: > On 9/28/2023 2:49 AM, Karl Exler wrote: >   > > Dear all > >  Is it possible to change the clock (direction) from this formula > >   > >  poly=circle(5); > >  spiral_sweep(poly, h=200, r=50, turns=8, $fn=36, orient=LEFT); > >   > >  so that the spiral goes clockwise or counter clickwise? >   >  You could always mirror it. No need. As Adrian pointed out, 'turns = -8' does it.
JB
Jordan Brown
Thu, Sep 28, 2023 3:56 PM

On 9/28/2023 8:51 AM, larry wrote:

On Thu, 2023-09-28 at 15:38 +0000, Jordan Brown wrote:

 You could always mirror it.

No need.

As Adrian pointed out, 'turns = -8' does it.

Sure.  Just offering another way to look at it.

On 9/28/2023 8:51 AM, larry wrote: > On Thu, 2023-09-28 at 15:38 +0000, Jordan Brown wrote: >>  You could always mirror it. > No need. > > As Adrian pointed out, 'turns = -8' does it. Sure.  Just offering another way to look at it.