discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

I do not know why difference() does not work for me.

I
infocean
Thu, Mar 18, 2021 4:49 AM

Hi,

A newbie is here.  I created this little program below, which works.  Some
parameters are not shown, their value is some real numbers.  However when I
uncomment the commented out 3 lines and put in the needed '}', then it does
not work.  F5 does not give any message, but does not draw the
airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid.  I wanted to hollow it out.  That is why I
create the difference of tho ellipses.  Why it is a not supported operation?
Any good tip how I can achieve what I want?  Any tip how I can copy and
paste from the error log?  I am using a Mac wit Catalina and OpenSCAD is the
latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo;  //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)

/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */

resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
circle(r=(aidelpsl-aidelpss));

// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();

--
Sent from: http://forum.openscad.org/

Hi, A newbie is here. I created this little program below, which works. Some parameters are not shown, their value is some real numbers. However when I uncomment the commented out 3 lines and put in the needed '}', then it does not work. F5 does not give any message, but does not draw the airdirector(). F6 report errors: "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. and then it also does not draw the airdiryctor() I do not want it as a solid. I wanted to hollow it out. That is why I create the difference of tho ellipses. Why it is a not supported operation? Any good tip how I can achieve what I want? Any tip how I can copy and paste from the error log? I am using a Mac wit Catalina and OpenSCAD is the latest stabil version. codiamo = 16; codiami = 6; // Parameters of the airdirector aidelpsl = codiamo; //longer axis of the ellipse aidelpss = codiami; //shorter axis of the ellipse aidthick = 0.2; //Thickness of the airdirector // Module of the airdirector module airdirector(){ translate([-2.3,0,0]) rotate([0,90,0]) rotate_extrude(convexity=10) translate([aidelpsl/2-1.8,0,0]) rotate(45) /* difference(){ resize([aidelpsl/3,aidelpss/3]); circle(r=(aidelpsl-aidelpss)); */ resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) circle(r=(aidelpsl-aidelpss)); // Draw the airdirectors color("Teal",0.5) render() translate([pairdirector1,0,0]) airdirector(); color("Teal",0.5) render() translate([pairdirector2,0,0]) mirror([1,0,0]) airdirector(); -- Sent from: http://forum.openscad.org/
B
Baerdric
Thu, Mar 18, 2021 4:52 AM

Maybe I'm missing it, but I don't see the closing brace for the difference.

Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 12:49 AM, infocean via Discuss discuss@lists.openscad.org wrote:

Hi,

A newbie is here. I created this little program below, which works. Some parameters are not shown, their value is some real numbers. However when I uncomment the commented out 3 lines and put in the needed '}', then it does not work. F5 does not give any message, but does not draw the airdirector(). F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid. I wanted to hollow it out. That is why I create the difference of tho ellipses. Why it is a not supported operation? Any good tip how I can achieve what I want? Any tip how I can copy and paste from the error log? I am using a Mac wit Catalina and OpenSCAD is the latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo; //longer axis of the ellipse
aidelpss = codiami; //shorter axis of the ellipse
aidthick = 0.2; //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)

/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */

resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
circle(r=(aidelpsl-aidelpss));

// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();


Sent from the OpenSCAD mailing list archive at Nabble.com.

Maybe I'm missing it, but I don't see the closing brace for the difference. Sent with [ProtonMail](https://protonmail.com) Secure Email. ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ On Thursday, March 18, 2021 12:49 AM, infocean via Discuss <discuss@lists.openscad.org> wrote: > Hi, > > A newbie is here. I created this little program below, which works. Some parameters are not shown, their value is some real numbers. However when I uncomment the commented out 3 lines and put in the needed '}', then it does not work. F5 does not give any message, but does not draw the airdirector(). F6 report errors: > "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > and then it also does not draw the airdiryctor() > > I do not want it as a solid. I wanted to hollow it out. That is why I create the difference of tho ellipses. Why it is a not supported operation? Any good tip how I can achieve what I want? Any tip how I can copy and paste from the error log? I am using a Mac wit Catalina and OpenSCAD is the latest stabil version. > > codiamo = 16; > codiami = 6; > > // Parameters of the airdirector > aidelpsl = codiamo; //longer axis of the ellipse > aidelpss = codiami; //shorter axis of the ellipse > aidthick = 0.2; //Thickness of the airdirector > > // Module of the airdirector > module airdirector(){ > translate([-2.3,0,0]) > rotate([0,90,0]) > rotate_extrude(convexity=10) > translate([aidelpsl/2-1.8,0,0]) > rotate(45) > > /* difference(){ > resize([aidelpsl/3,aidelpss/3]); > circle(r=(aidelpsl-aidelpss)); */ > > resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) > circle(r=(aidelpsl-aidelpss)); > > // Draw the airdirectors > color("Teal",0.5) render() > translate([pairdirector1,0,0]) > airdirector(); > color("Teal",0.5) render() > translate([pairdirector2,0,0]) > mirror([1,0,0]) > airdirector(); > > --------------------------------------------------------------- > Sent from the [OpenSCAD mailing list archive](http://forum.openscad.org/) at Nabble.com.
LA
Lee A
Thu, Mar 18, 2021 5:01 AM

He explained that, Difference is commented out.
But I don't see the closing brace for module airdirector

On 3/17/2021 11:52 PM, Baerdric via Discuss wrote:

Maybe I'm missing it, but I don't see the closing brace for the
difference.

Sent with ProtonMail https://protonmail.com Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 12:49 AM, infocean via Discuss
discuss@lists.openscad.org wrote:

Hi,

A newbie is here.  I created this little program below, which works.
 Some parameters are not shown, their value is some real numbers.
 However when I uncomment the commented out 3 lines and put in the
needed '}', then it does not work.  F5 does not give any message, but
does not draw the airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid.  I wanted to hollow it out.  That is why
I create the difference of tho ellipses.  Why it is a not supported
operation?  Any good tip how I can achieve what I want?  Any tip how
I can copy and paste from the error log?  I am using a Mac wit
Catalina and OpenSCAD is the latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo;   //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
    translate([-2.3,0,0])
    rotate([0,90,0])
    rotate_extrude(convexity=10)
    translate([aidelpsl/2-1.8,0,0])
    rotate(45)

 /* difference(){
    resize([aidelpsl/3,aidelpss/3]);
    circle(r=(aidelpsl-aidelpss)); */

    resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
    circle(r=(aidelpsl-aidelpss));

// Draw the airdirectors
    color("Teal",0.5) render()
        translate([pairdirector1,0,0])
        airdirector();
    color("Teal",0.5) render()
        translate([pairdirector2,0,0])
        mirror([1,0,0])
        airdirector();


Sent from the OpenSCAD mailing list archive
http://forum.openscad.org/ at Nabble.com.


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

He explained that, Difference is commented out. But I don't see the closing brace for module airdirector On 3/17/2021 11:52 PM, Baerdric via Discuss wrote: > Maybe I'm missing it, but I don't see the closing brace for the > difference. > > > Sent with ProtonMail <https://protonmail.com> Secure Email. > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ > On Thursday, March 18, 2021 12:49 AM, infocean via Discuss > <discuss@lists.openscad.org> wrote: > >> Hi, >> >> A newbie is here.  I created this little program below, which works. >>  Some parameters are not shown, their value is some real numbers. >>  However when I uncomment the commented out 3 lines and put in the >> needed '}', then it does not work.  F5 does not give any message, but >> does not draw the airdirector().  F6 report errors: >> "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. >> "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. >> and then it also does not draw the airdiryctor() >> >> I do not want it as a solid.  I wanted to hollow it out.  That is why >> I create the difference of tho ellipses.  Why it is a not supported >> operation?  Any good tip how I can achieve what I want?  Any tip how >> I can copy and paste from the error log?  I am using a Mac wit >> Catalina and OpenSCAD is the latest stabil version. >> >> codiamo = 16; >> codiami = 6; >> >> // Parameters of the airdirector >> aidelpsl = codiamo;   //longer axis of the ellipse >> aidelpss = codiami;    //shorter axis of the ellipse >> aidthick = 0.2;    //Thickness of the airdirector >> >> // Module of the airdirector >> module airdirector(){ >>     translate([-2.3,0,0]) >>     rotate([0,90,0]) >>     rotate_extrude(convexity=10) >>     translate([aidelpsl/2-1.8,0,0]) >>     rotate(45) >> >>  /* difference(){ >>     resize([aidelpsl/3,aidelpss/3]); >>     circle(r=(aidelpsl-aidelpss)); */ >> >>     resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) >>     circle(r=(aidelpsl-aidelpss)); >> >> // Draw the airdirectors >>     color("Teal",0.5) render() >>         translate([pairdirector1,0,0]) >>         airdirector(); >>     color("Teal",0.5) render() >>         translate([pairdirector2,0,0]) >>         mirror([1,0,0]) >>         airdirector(); >> >> ------------------------------------------------------------------------ >> Sent from the OpenSCAD mailing list archive >> <http://forum.openscad.org/> at Nabble.com. > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org
M
MichaelAtOz
Thu, Mar 18, 2021 5:43 AM

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)
difference(){
resize([aidelpsl/3,aidelpss/3])  // <== removed semi-colon
circle(r=(aidelpsl-aidelpss));
resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
circle(r=(aidelpsl-aidelpss));
}
}

-----Original Message-----
From: Lee A [mailto:683lee@337lee.com]
Sent: Thu, 18 Mar 2021 16:02
To: discuss@lists.openscad.org
Subject: [OpenSCAD] Re: I do not know why difference() does not work for me.

He explained that, Difference is commented out.
But I don't see the closing brace for module airdirector

On 3/17/2021 11:52 PM, Baerdric via Discuss wrote:

Maybe I'm missing it, but I don't see the closing brace for the
difference.

Sent with ProtonMail https://protonmail.com Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 12:49 AM, infocean via Discuss
discuss@lists.openscad.org wrote:

Hi,

A newbie is here.  I created this little program below, which works.
Some parameters are not shown, their value is some real numbers.
However when I uncomment the commented out 3 lines and put in the
needed '}', then it does not work.  F5 does not give any message, but
does not draw the airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid.  I wanted to hollow it out.  That is why
I create the difference of tho ellipses.  Why it is a not supported
operation?  Any good tip how I can achieve what I want?  Any tip how
I can copy and paste from the error log?  I am using a Mac wit
Catalina and OpenSCAD is the latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo;  //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)

/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */

 resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
 circle(r=(aidelpsl-aidelpss));

// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();


Sent from the OpenSCAD mailing list archive
http://forum.openscad.org/ at Nabble.com.


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

--
This email has been checked for viruses by AVG.
https://www.avg.com

// Module of the airdirector module airdirector(){ translate([-2.3,0,0]) rotate([0,90,0]) rotate_extrude(convexity=10) translate([aidelpsl/2-1.8,0,0]) rotate(45) difference(){ resize([aidelpsl/3,aidelpss/3]) // <== removed semi-colon circle(r=(aidelpsl-aidelpss)); resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) circle(r=(aidelpsl-aidelpss)); } } > -----Original Message----- > From: Lee A [mailto:683lee@337lee.com] > Sent: Thu, 18 Mar 2021 16:02 > To: discuss@lists.openscad.org > Subject: [OpenSCAD] Re: I do not know why difference() does not work for me. > > He explained that, Difference is commented out. > But I don't see the closing brace for module airdirector > > > On 3/17/2021 11:52 PM, Baerdric via Discuss wrote: > > Maybe I'm missing it, but I don't see the closing brace for the > > difference. > > > > > > Sent with ProtonMail <https://protonmail.com> Secure Email. > > > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ > > On Thursday, March 18, 2021 12:49 AM, infocean via Discuss > > <discuss@lists.openscad.org> wrote: > > > >> Hi, > >> > >> A newbie is here. I created this little program below, which works. > >> Some parameters are not shown, their value is some real numbers. > >> However when I uncomment the commented out 3 lines and put in the > >> needed '}', then it does not work. F5 does not give any message, but > >> does not draw the airdirector(). F6 report errors: > >> "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > >> "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > >> and then it also does not draw the airdiryctor() > >> > >> I do not want it as a solid. I wanted to hollow it out. That is why > >> I create the difference of tho ellipses. Why it is a not supported > >> operation? Any good tip how I can achieve what I want? Any tip how > >> I can copy and paste from the error log? I am using a Mac wit > >> Catalina and OpenSCAD is the latest stabil version. > >> > >> codiamo = 16; > >> codiami = 6; > >> > >> // Parameters of the airdirector > >> aidelpsl = codiamo; //longer axis of the ellipse > >> aidelpss = codiami; //shorter axis of the ellipse > >> aidthick = 0.2; //Thickness of the airdirector > >> > >> // Module of the airdirector > >> module airdirector(){ > >> translate([-2.3,0,0]) > >> rotate([0,90,0]) > >> rotate_extrude(convexity=10) > >> translate([aidelpsl/2-1.8,0,0]) > >> rotate(45) > >> > >> /* difference(){ > >> resize([aidelpsl/3,aidelpss/3]); > >> circle(r=(aidelpsl-aidelpss)); */ > >> > >> resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) > >> circle(r=(aidelpsl-aidelpss)); > >> > >> // Draw the airdirectors > >> color("Teal",0.5) render() > >> translate([pairdirector1,0,0]) > >> airdirector(); > >> color("Teal",0.5) render() > >> translate([pairdirector2,0,0]) > >> mirror([1,0,0]) > >> airdirector(); > >> > >> ------------------------------------------------------------------------ > >> Sent from the OpenSCAD mailing list archive > >> <http://forum.openscad.org/> at Nabble.com. > > > > _______________________________________________ > > 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 -- This email has been checked for viruses by AVG. https://www.avg.com
M
MichaelAtOz
Thu, Mar 18, 2021 6:36 AM

Any tip how I can copy and paste from the error log?

Those error are also in the console, where you can drag-select/right-click(whatever the Mac thing
is)/copy.


From: infocean via Discuss [mailto:discuss@lists.openscad.org]
Sent: Thu, 18 Mar 2021 15:49
To: discuss@lists.openscad.org
Cc: infocean
Subject: [OpenSCAD] I do not know why difference() does not work for me.

Hi,

A newbie is here.  I created this little program below, which works.  Some parameters are not
shown, their value is some real numbers.  However when I uncomment the commented out 3 lines and
put in the needed '}', then it does not work.  F5 does not give any message, but does not draw the
airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid.  I wanted to hollow it out.  That is why I create the difference of
tho ellipses.  Why it is a not supported operation?  Any good tip how I can achieve what I want?
Any tip how I can copy and paste from the error log?  I am using a Mac wit Catalina and OpenSCAD is
the latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo;  //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)

/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */

resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) 
circle(r=(aidelpsl-aidelpss)); 

// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();


Sent from the OpenSCAD mailing http://forum.openscad.org/  list archive at Nabble.com.

--
This email has been checked for viruses by AVG.
https://www.avg.com

> Any tip how I can copy and paste from the error log? Those error are also in the console, where you can drag-select/right-click(whatever the Mac thing is)/copy. _____ From: infocean via Discuss [mailto:discuss@lists.openscad.org] Sent: Thu, 18 Mar 2021 15:49 To: discuss@lists.openscad.org Cc: infocean Subject: [OpenSCAD] I do not know why difference() does not work for me. Hi, A newbie is here. I created this little program below, which works. Some parameters are not shown, their value is some real numbers. However when I uncomment the commented out 3 lines and put in the needed '}', then it does not work. F5 does not give any message, but does not draw the airdirector(). F6 report errors: "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. and then it also does not draw the airdiryctor() I do not want it as a solid. I wanted to hollow it out. That is why I create the difference of tho ellipses. Why it is a not supported operation? Any good tip how I can achieve what I want? Any tip how I can copy and paste from the error log? I am using a Mac wit Catalina and OpenSCAD is the latest stabil version. codiamo = 16; codiami = 6; // Parameters of the airdirector aidelpsl = codiamo; //longer axis of the ellipse aidelpss = codiami; //shorter axis of the ellipse aidthick = 0.2; //Thickness of the airdirector // Module of the airdirector module airdirector(){ translate([-2.3,0,0]) rotate([0,90,0]) rotate_extrude(convexity=10) translate([aidelpsl/2-1.8,0,0]) rotate(45) /* difference(){ resize([aidelpsl/3,aidelpss/3]); circle(r=(aidelpsl-aidelpss)); */ resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) circle(r=(aidelpsl-aidelpss)); // Draw the airdirectors color("Teal",0.5) render() translate([pairdirector1,0,0]) airdirector(); color("Teal",0.5) render() translate([pairdirector2,0,0]) mirror([1,0,0]) airdirector(); _____ Sent from the OpenSCAD mailing <http://forum.openscad.org/> list archive at Nabble.com. -- This email has been checked for viruses by AVG. https://www.avg.com
B
Baerdric
Thu, Mar 18, 2021 10:46 AM

Ah, sorry. I'll keep it to myself going forward.

Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 1:01 AM, Lee A 683lee@337lee.com wrote:

He explained that, Difference is commented out.
But I don't see the closing brace for module airdirector

On 3/17/2021 11:52 PM, Baerdric via Discuss wrote:

Maybe I'm missing it, but I don't see the closing brace for the
difference.
Sent with ProtonMail https://protonmail.com Secure Email.
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 12:49 AM, infocean via Discuss
discuss@lists.openscad.org wrote:

Hi,
A newbie is here.  I created this little program below, which works.
 Some parameters are not shown, their value is some real numbers.
 However when I uncomment the commented out 3 lines and put in the
needed '}', then it does not work.  F5 does not give any message, but
does not draw the airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()
I do not want it as a solid.  I wanted to hollow it out.  That is why
I create the difference of tho ellipses.  Why it is a not supported
operation?  Any good tip how I can achieve what I want?  Any tip how
I can copy and paste from the error log?  I am using a Mac wit
Catalina and OpenSCAD is the latest stabil version.
codiamo = 16;
codiami = 6;
// Parameters of the airdirector
aidelpsl = codiamo;   //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector
// Module of the airdirector
module airdirector(){
    translate([-2.3,0,0])
    rotate([0,90,0])
    rotate_extrude(convexity=10)
    translate([aidelpsl/2-1.8,0,0])
    rotate(45)
/* difference(){
    resize([aidelpsl/3,aidelpss/3]);
    circle(r=(aidelpsl-aidelpss)); */
resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
    circle(r=(aidelpsl-aidelpss));
// Draw the airdirectors
    color("Teal",0.5) render()
        translate([pairdirector1,0,0])
        airdirector();
    color("Teal",0.5) render()
        translate([pairdirector2,0,0])
        mirror([1,0,0])
        airdirector();

Sent from the OpenSCAD mailing list archive
http://forum.openscad.org/ at Nabble.com.

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

Ah, sorry. I'll keep it to myself going forward. Sent with ProtonMail Secure Email. ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ On Thursday, March 18, 2021 1:01 AM, Lee A <683lee@337lee.com> wrote: > He explained that, Difference is commented out. > But I don't see the closing brace for module airdirector > > On 3/17/2021 11:52 PM, Baerdric via Discuss wrote: > > > Maybe I'm missing it, but I don't see the closing brace for the > > difference. > > Sent with ProtonMail https://protonmail.com Secure Email. > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ > > On Thursday, March 18, 2021 12:49 AM, infocean via Discuss > > discuss@lists.openscad.org wrote: > > > > > Hi, > > > A newbie is here.  I created this little program below, which works. > > >  Some parameters are not shown, their value is some real numbers. > > >  However when I uncomment the commented out 3 lines and put in the > > > needed '}', then it does not work.  F5 does not give any message, but > > > does not draw the airdirector().  F6 report errors: > > > "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > > > "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > > > and then it also does not draw the airdiryctor() > > > I do not want it as a solid.  I wanted to hollow it out.  That is why > > > I create the difference of tho ellipses.  Why it is a not supported > > > operation?  Any good tip how I can achieve what I want?  Any tip how > > > I can copy and paste from the error log?  I am using a Mac wit > > > Catalina and OpenSCAD is the latest stabil version. > > > codiamo = 16; > > > codiami = 6; > > > // Parameters of the airdirector > > > aidelpsl = codiamo;   //longer axis of the ellipse > > > aidelpss = codiami;    //shorter axis of the ellipse > > > aidthick = 0.2;    //Thickness of the airdirector > > > // Module of the airdirector > > > module airdirector(){ > > >     translate([-2.3,0,0]) > > >     rotate([0,90,0]) > > >     rotate_extrude(convexity=10) > > >     translate([aidelpsl/2-1.8,0,0]) > > >     rotate(45) > > > /* difference(){ > > >     resize([aidelpsl/3,aidelpss/3]); > > >     circle(r=(aidelpsl-aidelpss)); */ > > > resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) > > >     circle(r=(aidelpsl-aidelpss)); > > > // Draw the airdirectors > > >     color("Teal",0.5) render() > > >         translate([pairdirector1,0,0]) > > >         airdirector(); > > >     color("Teal",0.5) render() > > >         translate([pairdirector2,0,0]) > > >         mirror([1,0,0]) > > >         airdirector(); > > > > > > Sent from the OpenSCAD mailing list archive > > > http://forum.openscad.org/ at Nabble.com. > > > > 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
NH
nop head
Thu, Mar 18, 2021 11:09 AM

pairdirector1 and pairdirector2 are not defined. If I give them values of 0
and 10 I get no errors and it draws this:

[image: image.png]

What values are you using?

On Thu, 18 Mar 2021 at 10:46, Baerdric via Discuss <
discuss@lists.openscad.org> wrote:

Ah, sorry. I'll keep it to myself going forward.

Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 1:01 AM, Lee A 683lee@337lee.com wrote:

He explained that, Difference is commented out.
But I don't see the closing brace for module airdirector

On 3/17/2021 11:52 PM, Baerdric via Discuss wrote:

Maybe I'm missing it, but I don't see the closing brace for the
difference.
Sent with ProtonMail https://protonmail.com Secure Email.
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 12:49 AM, infocean via Discuss
discuss@lists.openscad.org wrote:

Hi,
A newbie is here.  I created this little program below, which works.
Some parameters are not shown, their value is some real numbers.
However when I uncomment the commented out 3 lines and put in the
needed '}', then it does not work.  F5 does not give any message, but
does not draw the airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to

CGAL_Nef+Polyhedron.

"The given mesh is not closed! Unable to convert to

CGAL_Nef+Polyhedron.

and then it also does not draw the airdiryctor()
I do not want it as a solid.  I wanted to hollow it out.  That is why
I create the difference of tho ellipses.  Why it is a not supported
operation?  Any good tip how I can achieve what I want?  Any tip how
I can copy and paste from the error log?  I am using a Mac wit
Catalina and OpenSCAD is the latest stabil version.
codiamo = 16;
codiami = 6;
// Parameters of the airdirector
aidelpsl = codiamo;  //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector
// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)
/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */
resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
circle(r=(aidelpsl-aidelpss));
// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();

Sent from the OpenSCAD mailing list archive
http://forum.openscad.org/ at Nabble.com.

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


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

pairdirector1 and pairdirector2 are not defined. If I give them values of 0 and 10 I get no errors and it draws this: [image: image.png] What values are you using? On Thu, 18 Mar 2021 at 10:46, Baerdric via Discuss < discuss@lists.openscad.org> wrote: > Ah, sorry. I'll keep it to myself going forward. > > > Sent with ProtonMail Secure Email. > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ > On Thursday, March 18, 2021 1:01 AM, Lee A <683lee@337lee.com> wrote: > > > He explained that, Difference is commented out. > > But I don't see the closing brace for module airdirector > > > > On 3/17/2021 11:52 PM, Baerdric via Discuss wrote: > > > > > Maybe I'm missing it, but I don't see the closing brace for the > > > difference. > > > Sent with ProtonMail https://protonmail.com Secure Email. > > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ > > > On Thursday, March 18, 2021 12:49 AM, infocean via Discuss > > > discuss@lists.openscad.org wrote: > > > > > > > Hi, > > > > A newbie is here. I created this little program below, which works. > > > > Some parameters are not shown, their value is some real numbers. > > > > However when I uncomment the commented out 3 lines and put in the > > > > needed '}', then it does not work. F5 does not give any message, but > > > > does not draw the airdirector(). F6 report errors: > > > > "The given mesh is not closed! Unable to convert to > CGAL_Nef+Polyhedron. > > > > "The given mesh is not closed! Unable to convert to > CGAL_Nef+Polyhedron. > > > > and then it also does not draw the airdiryctor() > > > > I do not want it as a solid. I wanted to hollow it out. That is why > > > > I create the difference of tho ellipses. Why it is a not supported > > > > operation? Any good tip how I can achieve what I want? Any tip how > > > > I can copy and paste from the error log? I am using a Mac wit > > > > Catalina and OpenSCAD is the latest stabil version. > > > > codiamo = 16; > > > > codiami = 6; > > > > // Parameters of the airdirector > > > > aidelpsl = codiamo; //longer axis of the ellipse > > > > aidelpss = codiami; //shorter axis of the ellipse > > > > aidthick = 0.2; //Thickness of the airdirector > > > > // Module of the airdirector > > > > module airdirector(){ > > > > translate([-2.3,0,0]) > > > > rotate([0,90,0]) > > > > rotate_extrude(convexity=10) > > > > translate([aidelpsl/2-1.8,0,0]) > > > > rotate(45) > > > > /* difference(){ > > > > resize([aidelpsl/3,aidelpss/3]); > > > > circle(r=(aidelpsl-aidelpss)); */ > > > > resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) > > > > circle(r=(aidelpsl-aidelpss)); > > > > // Draw the airdirectors > > > > color("Teal",0.5) render() > > > > translate([pairdirector1,0,0]) > > > > airdirector(); > > > > color("Teal",0.5) render() > > > > translate([pairdirector2,0,0]) > > > > mirror([1,0,0]) > > > > airdirector(); > > > > > > > > Sent from the OpenSCAD mailing list archive > > > > http://forum.openscad.org/ at Nabble.com. > > > > > > 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 > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
M
MichaelAtOz
Thu, Mar 18, 2021 11:34 AM

This didn't make it for some reason -resending.

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)
difference(){
resize([aidelpsl/3,aidelpss/3])  // <== removed semi-colon
circle(r=(aidelpsl-aidelpss));
resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
circle(r=(aidelpsl-aidelpss));
}
}

-----Original Message-----
From: Lee A [mailto:683lee@337lee.com]
Sent: Thu, 18 Mar 2021 16:02
To: discuss@lists.openscad.org
Subject: [OpenSCAD] Re: I do not know why difference() does not work for me.

He explained that, Difference is commented out.
But I don't see the closing brace for module airdirector

On 3/17/2021 11:52 PM, Baerdric via Discuss wrote:

Maybe I'm missing it, but I don't see the closing brace for the
difference.

Sent with ProtonMail https://protonmail.com Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, March 18, 2021 12:49 AM, infocean via Discuss
discuss@lists.openscad.org wrote:

Hi,

A newbie is here.  I created this little program below, which works.
Some parameters are not shown, their value is some real numbers.
However when I uncomment the commented out 3 lines and put in the
needed '}', then it does not work.  F5 does not give any message, but
does not draw the airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid.  I wanted to hollow it out.  That is why
I create the difference of tho ellipses.  Why it is a not supported
operation?  Any good tip how I can achieve what I want?  Any tip how
I can copy and paste from the error log?  I am using a Mac wit
Catalina and OpenSCAD is the latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo;  //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)

/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */

 resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3])
 circle(r=(aidelpsl-aidelpss));

// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();


Sent from the OpenSCAD mailing list archive
http://forum.openscad.org/ at Nabble.com.


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

--
This email has been checked for viruses by AVG.
https://www.avg.com

This didn't make it for some reason -resending. // Module of the airdirector module airdirector(){ translate([-2.3,0,0]) rotate([0,90,0]) rotate_extrude(convexity=10) translate([aidelpsl/2-1.8,0,0]) rotate(45) difference(){ resize([aidelpsl/3,aidelpss/3]) // <== removed semi-colon circle(r=(aidelpsl-aidelpss)); resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) circle(r=(aidelpsl-aidelpss)); } } > -----Original Message----- > From: Lee A [mailto:683lee@337lee.com] > Sent: Thu, 18 Mar 2021 16:02 > To: discuss@lists.openscad.org > Subject: [OpenSCAD] Re: I do not know why difference() does not work for me. > > He explained that, Difference is commented out. > But I don't see the closing brace for module airdirector > > > On 3/17/2021 11:52 PM, Baerdric via Discuss wrote: > > Maybe I'm missing it, but I don't see the closing brace for the > > difference. > > > > > > Sent with ProtonMail <https://protonmail.com> Secure Email. > > > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ > > On Thursday, March 18, 2021 12:49 AM, infocean via Discuss > > <discuss@lists.openscad.org> wrote: > > > >> Hi, > >> > >> A newbie is here. I created this little program below, which works. > >> Some parameters are not shown, their value is some real numbers. > >> However when I uncomment the commented out 3 lines and put in the > >> needed '}', then it does not work. F5 does not give any message, but > >> does not draw the airdirector(). F6 report errors: > >> "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > >> "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. > >> and then it also does not draw the airdiryctor() > >> > >> I do not want it as a solid. I wanted to hollow it out. That is why > >> I create the difference of tho ellipses. Why it is a not supported > >> operation? Any good tip how I can achieve what I want? Any tip how > >> I can copy and paste from the error log? I am using a Mac wit > >> Catalina and OpenSCAD is the latest stabil version. > >> > >> codiamo = 16; > >> codiami = 6; > >> > >> // Parameters of the airdirector > >> aidelpsl = codiamo; //longer axis of the ellipse > >> aidelpss = codiami; //shorter axis of the ellipse > >> aidthick = 0.2; //Thickness of the airdirector > >> > >> // Module of the airdirector > >> module airdirector(){ > >> translate([-2.3,0,0]) > >> rotate([0,90,0]) > >> rotate_extrude(convexity=10) > >> translate([aidelpsl/2-1.8,0,0]) > >> rotate(45) > >> > >> /* difference(){ > >> resize([aidelpsl/3,aidelpss/3]); > >> circle(r=(aidelpsl-aidelpss)); */ > >> > >> resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) > >> circle(r=(aidelpsl-aidelpss)); > >> > >> // Draw the airdirectors > >> color("Teal",0.5) render() > >> translate([pairdirector1,0,0]) > >> airdirector(); > >> color("Teal",0.5) render() > >> translate([pairdirector2,0,0]) > >> mirror([1,0,0]) > >> airdirector(); > >> > >> ------------------------------------------------------------------------ > >> Sent from the OpenSCAD mailing list archive > >> <http://forum.openscad.org/> at Nabble.com. > > > > _______________________________________________ > > 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 -- This email has been checked for viruses by AVG. https://www.avg.com
M
MichaelAtOz
Thu, Mar 18, 2021 11:35 AM

Ditto


Any tip how I can copy and paste from the error log?

Those error are also in the console, where you can drag-select/right-click(whatever the Mac thing
is)/copy.


From: infocean via Discuss [mailto:discuss@lists.openscad.org]
Sent: Thu, 18 Mar 2021 15:49
To: discuss@lists.openscad.org
Cc: infocean
Subject: [OpenSCAD] I do not know why difference() does not work for me.

Hi,

A newbie is here.  I created this little program below, which works.  Some parameters are not
shown, their value is some real numbers.  However when I uncomment the commented out 3 lines and
put in the needed '}', then it does not work.  F5 does not give any message, but does not draw the
airdirector().  F6 report errors:
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
"The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron.
and then it also does not draw the airdiryctor()

I do not want it as a solid.  I wanted to hollow it out.  That is why I create the difference of
tho ellipses.  Why it is a not supported operation?  Any good tip how I can achieve what I want?
Any tip how I can copy and paste from the error log?  I am using a Mac wit Catalina and OpenSCAD is
the latest stabil version.

codiamo = 16;
codiami = 6;

// Parameters of the airdirector
aidelpsl = codiamo;  //longer axis of the ellipse
aidelpss = codiami;    //shorter axis of the ellipse
aidthick = 0.2;    //Thickness of the airdirector

// Module of the airdirector
module airdirector(){
translate([-2.3,0,0])
rotate([0,90,0])
rotate_extrude(convexity=10)
translate([aidelpsl/2-1.8,0,0])
rotate(45)

/* difference(){
resize([aidelpsl/3,aidelpss/3]);
circle(r=(aidelpsl-aidelpss)); */

resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) 
circle(r=(aidelpsl-aidelpss)); 

// Draw the airdirectors
color("Teal",0.5) render()
translate([pairdirector1,0,0])
airdirector();
color("Teal",0.5) render()
translate([pairdirector2,0,0])
mirror([1,0,0])
airdirector();


Sent from the OpenSCAD mailing http://forum.openscad.org/  list archive at Nabble.com.

--
This email has been checked for viruses by AVG.
https://www.avg.com

Ditto __________ > Any tip how I can copy and paste from the error log? Those error are also in the console, where you can drag-select/right-click(whatever the Mac thing is)/copy. _____ From: infocean via Discuss [mailto:discuss@lists.openscad.org] Sent: Thu, 18 Mar 2021 15:49 To: discuss@lists.openscad.org Cc: infocean Subject: [OpenSCAD] I do not know why difference() does not work for me. Hi, A newbie is here. I created this little program below, which works. Some parameters are not shown, their value is some real numbers. However when I uncomment the commented out 3 lines and put in the needed '}', then it does not work. F5 does not give any message, but does not draw the airdirector(). F6 report errors: "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. "The given mesh is not closed! Unable to convert to CGAL_Nef+Polyhedron. and then it also does not draw the airdiryctor() I do not want it as a solid. I wanted to hollow it out. That is why I create the difference of tho ellipses. Why it is a not supported operation? Any good tip how I can achieve what I want? Any tip how I can copy and paste from the error log? I am using a Mac wit Catalina and OpenSCAD is the latest stabil version. codiamo = 16; codiami = 6; // Parameters of the airdirector aidelpsl = codiamo; //longer axis of the ellipse aidelpss = codiami; //shorter axis of the ellipse aidthick = 0.2; //Thickness of the airdirector // Module of the airdirector module airdirector(){ translate([-2.3,0,0]) rotate([0,90,0]) rotate_extrude(convexity=10) translate([aidelpsl/2-1.8,0,0]) rotate(45) /* difference(){ resize([aidelpsl/3,aidelpss/3]); circle(r=(aidelpsl-aidelpss)); */ resize([(aidelpsl-aidthick)/3,(aidelpss-aidthick)/3]) circle(r=(aidelpsl-aidelpss)); // Draw the airdirectors color("Teal",0.5) render() translate([pairdirector1,0,0]) airdirector(); color("Teal",0.5) render() translate([pairdirector2,0,0]) mirror([1,0,0]) airdirector(); _____ Sent from the OpenSCAD mailing <http://forum.openscad.org/> list archive at Nabble.com. -- This email has been checked for viruses by AVG. https://www.avg.com
M
MichaelAtOz
Thu, Mar 18, 2021 11:39 AM

MichaelAtOz wrote

This didn't make it for some reason -resending.

Hmm, they made it to the Forum, but I didn't see them...(mailman 3?)


OpenSCAD Admin - email* me if you need anything,  or if I've done something stupid...

  • on the Forum, click on my MichaelAtOz label, there is a link to email me.

Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above.

--
Sent from: http://forum.openscad.org/

MichaelAtOz wrote > This didn't make it for some reason -resending. Hmm, they made it to the Forum, but I didn't see them...(mailman 3?) ----- OpenSCAD Admin - email* me if you need anything, or if I've done something stupid... * on the Forum, click on my MichaelAtOz label, there is a link to email me. Unless specifically shown otherwise above, my contribution is in the Public Domain; to the extent possible under law, I have waived all copyright and related or neighbouring rights to this work. Obviously inclusion of works of previous authors is not included in the above. -- Sent from: http://forum.openscad.org/