discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

WARNING: Attempted to remove too many vertices around this copied face, remesh aborted!

K
Ken
Wed, Jan 4, 2023 7:15 PM

I am getting this error-

WARNING: Attempted to remove too many vertices around this copied face,
remesh aborted!

when I try to f6 this file- f5 works fine. Searching on-line I can't
find this error mentioned anywhere.
What am I doing wrong, what does it actually mean, and how can I fix it?


include <BOSL2/std.scad>
$fn = 128;

module main_body_cube()
{
 color ("green")
rotate([0,0,0])
translate([0,0,0])
 cuboid ([30,10,15], rounding=1.5);
}

module lower_body_cube()
{
 color ("green")
rotate([0,0,0])
translate([0,0,-10])
 cuboid ([30,10,8],rounding=1.5, edges="Z");
}

module cable_cutout()
{
 color ("green")
rotate([0,0,0])
translate([0,0,-6])
 cuboid ([10,15,6], rounding=1);
}

module flat_bottom()
{
 color ("red")
rotate([0,0,0])
translate([-20,-10,-10])
cube([40,20,5]);
}

module hex_hole()
{
$fn = 128;
  translate([0,0,8])
   cylinder(8, d=6);
  translate([0,0,6])
    cylinder(2, d1=4, d2=6, $fn=6);
  translate([0,0,-12])
   cylinder(25, d=3.1);
}

module screw_hole()
{
$fn = 128;
   translate([0,0,8])
   cylinder(15, d=3.1);
   translate([0,0,6])
   cylinder(15, d=3.1);
}

//Cable saddle
difference()
{
main_body_cube();
cable_cutout();
flat_bottom();
rotate([0,0,0])
translate([10,0,0])
hex_hole();
rotate([0,0,0])
translate([-10,0,0])
hex_hole();
}

//Spacer
translate([40,0,9])
difference()
{
lower_body_cube();
translate([10,0,-25])
screw_hole();
translate([-10,0,-25])
screw_hole();
}


--
Cheers, Ken
bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the other.
Our job as parents is to teach them to control all three.

I am getting this error- WARNING: Attempted to remove too many vertices around this copied face, remesh aborted! when I try to f6 this file- f5 works fine. Searching on-line I can't find this error mentioned anywhere. What am I doing wrong, what does it actually mean, and how can I fix it? ****************************** include <BOSL2/std.scad> $fn = 128; module main_body_cube() {  color ("green") rotate([0,0,0]) translate([0,0,0])  cuboid ([30,10,15], rounding=1.5); } module lower_body_cube() {  color ("green") rotate([0,0,0]) translate([0,0,-10])  cuboid ([30,10,8],rounding=1.5, edges="Z"); } module cable_cutout() {  color ("green") rotate([0,0,0]) translate([0,0,-6])  cuboid ([10,15,6], rounding=1); } module flat_bottom() {  color ("red") rotate([0,0,0]) translate([-20,-10,-10]) cube([40,20,5]); } module hex_hole() { $fn = 128;   translate([0,0,8])    cylinder(8, d=6);   translate([0,0,6])     cylinder(2, d1=4, d2=6, $fn=6);   translate([0,0,-12])    cylinder(25, d=3.1); } module screw_hole() { $fn = 128;    translate([0,0,8])    cylinder(15, d=3.1);    translate([0,0,6])    cylinder(15, d=3.1); } //Cable saddle difference() { main_body_cube(); cable_cutout(); flat_bottom(); rotate([0,0,0]) translate([10,0,0]) hex_hole(); rotate([0,0,0]) translate([-10,0,0]) hex_hole(); } //Spacer translate([40,0,9]) difference() { lower_body_cube(); translate([10,0,-25]) screw_hole(); translate([-10,0,-25]) screw_hole(); } ***************************************** -- Cheers, Ken bats059@gmail.com https://vk7krj.com/running.html https://sstv.vk7krj.com/all_bands.html ---------------------------------------- A baby can be defined as an ego with a noise at one end and a smell at the other. Our job as parents is to teach them to control all three.
FH
Father Horton
Wed, Jan 4, 2023 7:23 PM

It worked for me.

If it hadn't, the first thing I'd try would be a smaller value for $fn.

On Wed, Jan 4, 2023 at 1:17 PM Ken bats059@gmail.com wrote:

I am getting this error-

WARNING: Attempted to remove too many vertices around this copied face,
remesh aborted!

when I try to f6 this file- f5 works fine. Searching on-line I can't
find this error mentioned anywhere.
What am I doing wrong, what does it actually mean, and how can I fix it?


include <BOSL2/std.scad>
$fn = 128;

module main_body_cube()
{
color ("green")
rotate([0,0,0])
translate([0,0,0])
cuboid ([30,10,15], rounding=1.5);
}

module lower_body_cube()
{
color ("green")
rotate([0,0,0])
translate([0,0,-10])
cuboid ([30,10,8],rounding=1.5, edges="Z");
}

module cable_cutout()
{
color ("green")
rotate([0,0,0])
translate([0,0,-6])
cuboid ([10,15,6], rounding=1);
}

module flat_bottom()
{
color ("red")
rotate([0,0,0])
translate([-20,-10,-10])
cube([40,20,5]);
}

module hex_hole()
{
$fn = 128;
translate([0,0,8])
cylinder(8, d=6);
translate([0,0,6])
cylinder(2, d1=4, d2=6, $fn=6);
translate([0,0,-12])
cylinder(25, d=3.1);
}

module screw_hole()
{
$fn = 128;
translate([0,0,8])
cylinder(15, d=3.1);
translate([0,0,6])
cylinder(15, d=3.1);
}

//Cable saddle
difference()
{
main_body_cube();
cable_cutout();
flat_bottom();
rotate([0,0,0])
translate([10,0,0])
hex_hole();
rotate([0,0,0])
translate([-10,0,0])
hex_hole();
}

//Spacer
translate([40,0,9])
difference()
{
lower_body_cube();
translate([10,0,-25])
screw_hole();
translate([-10,0,-25])
screw_hole();
}


--
Cheers, Ken
bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the
other.
Our job as parents is to teach them to control all three.


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

It worked for me. If it hadn't, the first thing I'd try would be a smaller value for $fn. On Wed, Jan 4, 2023 at 1:17 PM Ken <bats059@gmail.com> wrote: > I am getting this error- > > WARNING: Attempted to remove too many vertices around this copied face, > remesh aborted! > > when I try to f6 this file- f5 works fine. Searching on-line I can't > find this error mentioned anywhere. > What am I doing wrong, what does it actually mean, and how can I fix it? > > ****************************** > include <BOSL2/std.scad> > $fn = 128; > > > module main_body_cube() > { > color ("green") > rotate([0,0,0]) > translate([0,0,0]) > cuboid ([30,10,15], rounding=1.5); > } > > module lower_body_cube() > { > color ("green") > rotate([0,0,0]) > translate([0,0,-10]) > cuboid ([30,10,8],rounding=1.5, edges="Z"); > } > > module cable_cutout() > { > color ("green") > rotate([0,0,0]) > translate([0,0,-6]) > cuboid ([10,15,6], rounding=1); > } > > module flat_bottom() > { > color ("red") > rotate([0,0,0]) > translate([-20,-10,-10]) > cube([40,20,5]); > } > > module hex_hole() > { > $fn = 128; > translate([0,0,8]) > cylinder(8, d=6); > translate([0,0,6]) > cylinder(2, d1=4, d2=6, $fn=6); > translate([0,0,-12]) > cylinder(25, d=3.1); > } > > module screw_hole() > { > $fn = 128; > translate([0,0,8]) > cylinder(15, d=3.1); > translate([0,0,6]) > cylinder(15, d=3.1); > } > > //Cable saddle > difference() > { > main_body_cube(); > cable_cutout(); > flat_bottom(); > rotate([0,0,0]) > translate([10,0,0]) > hex_hole(); > rotate([0,0,0]) > translate([-10,0,0]) > hex_hole(); > } > > //Spacer > translate([40,0,9]) > difference() > { > lower_body_cube(); > translate([10,0,-25]) > screw_hole(); > translate([-10,0,-25]) > screw_hole(); > } > > ***************************************** > > -- > Cheers, Ken > bats059@gmail.com > https://vk7krj.com/running.html > https://sstv.vk7krj.com/all_bands.html > ---------------------------------------- > A baby can be defined as an ego with a noise at one end and a smell at the > other. > Our job as parents is to teach them to control all three. > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
K
Ken
Wed, Jan 4, 2023 8:17 PM

Thanks for the help- I tried smaller values for $fn, but the problem was
still there. Finally "fixed" it by turning off "stop on first error" in
openscad's set-up. It still showed the error, but also produced a
printable part.

On 2023-01-05 06:23, Father Horton wrote:

It worked for me.

If it hadn't, the first thing I'd try would be a smaller value for $fn.

On Wed, Jan 4, 2023 at 1:17 PM Ken bats059@gmail.com wrote:

 I am getting this error-

 WARNING: Attempted to remove too many vertices around this copied
 face,
 remesh aborted!

 when I try to f6 this file- f5 works fine. Searching on-line I can't
 find this error mentioned anywhere.
 What am I doing wrong, what does it actually mean, and how can I
 fix it?

 ******************************
 include <BOSL2/std.scad>
 $fn = 128;


 module main_body_cube()
 {
   color ("green")
 rotate([0,0,0])
 translate([0,0,0])
   cuboid ([30,10,15], rounding=1.5);
 }

 module lower_body_cube()
 {
   color ("green")
 rotate([0,0,0])
 translate([0,0,-10])
   cuboid ([30,10,8],rounding=1.5, edges="Z");
 }

 module cable_cutout()
 {
   color ("green")
 rotate([0,0,0])
 translate([0,0,-6])
   cuboid ([10,15,6], rounding=1);
 }

 module flat_bottom()
 {
   color ("red")
 rotate([0,0,0])
 translate([-20,-10,-10])
 cube([40,20,5]);
 }

 module hex_hole()
 {
 $fn = 128;
    translate([0,0,8])
     cylinder(8, d=6);
    translate([0,0,6])
      cylinder(2, d1=4, d2=6, $fn=6);
    translate([0,0,-12])
     cylinder(25, d=3.1);
 }

 module screw_hole()
 {
 $fn = 128;
     translate([0,0,8])
     cylinder(15, d=3.1);
     translate([0,0,6])
     cylinder(15, d=3.1);
 }

 //Cable saddle
 difference()
 {
 main_body_cube();
 cable_cutout();
 flat_bottom();
 rotate([0,0,0])
 translate([10,0,0])
 hex_hole();
 rotate([0,0,0])
 translate([-10,0,0])
 hex_hole();
 }

 //Spacer
 translate([40,0,9])
 difference()
 {
 lower_body_cube();
 translate([10,0,-25])
 screw_hole();
 translate([-10,0,-25])
 screw_hole();
 }

 *****************************************

 -- 
 Cheers, Ken
 bats059@gmail.com
 https://vk7krj.com/running.html
 https://sstv.vk7krj.com/all_bands.html
 ----------------------------------------
 A baby can be defined as an ego with a noise at one end and a
 smell at the other.
 Our job as parents is to teach them to control all three.
 _______________________________________________
 OpenSCAD mailing list
 To unsubscribe send an email to discuss-leave@lists.openscad.org

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

--
Cheers, Ken
bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the other.
Our job as parents is to teach them to control all three.

Thanks for the help- I tried smaller values for $fn, but the problem was still there. Finally "fixed" it by turning off "stop on first error" in openscad's set-up. It still showed the error, but also produced a printable part. On 2023-01-05 06:23, Father Horton wrote: > It worked for me. > > If it hadn't, the first thing I'd try would be a smaller value for $fn. > > On Wed, Jan 4, 2023 at 1:17 PM Ken <bats059@gmail.com> wrote: > > I am getting this error- > > WARNING: Attempted to remove too many vertices around this copied > face, > remesh aborted! > > when I try to f6 this file- f5 works fine. Searching on-line I can't > find this error mentioned anywhere. > What am I doing wrong, what does it actually mean, and how can I > fix it? > > ****************************** > include <BOSL2/std.scad> > $fn = 128; > > > module main_body_cube() > { >   color ("green") > rotate([0,0,0]) > translate([0,0,0]) >   cuboid ([30,10,15], rounding=1.5); > } > > module lower_body_cube() > { >   color ("green") > rotate([0,0,0]) > translate([0,0,-10]) >   cuboid ([30,10,8],rounding=1.5, edges="Z"); > } > > module cable_cutout() > { >   color ("green") > rotate([0,0,0]) > translate([0,0,-6]) >   cuboid ([10,15,6], rounding=1); > } > > module flat_bottom() > { >   color ("red") > rotate([0,0,0]) > translate([-20,-10,-10]) > cube([40,20,5]); > } > > module hex_hole() > { > $fn = 128; >    translate([0,0,8]) >     cylinder(8, d=6); >    translate([0,0,6]) >      cylinder(2, d1=4, d2=6, $fn=6); >    translate([0,0,-12]) >     cylinder(25, d=3.1); > } > > module screw_hole() > { > $fn = 128; >     translate([0,0,8]) >     cylinder(15, d=3.1); >     translate([0,0,6]) >     cylinder(15, d=3.1); > } > > //Cable saddle > difference() > { > main_body_cube(); > cable_cutout(); > flat_bottom(); > rotate([0,0,0]) > translate([10,0,0]) > hex_hole(); > rotate([0,0,0]) > translate([-10,0,0]) > hex_hole(); > } > > //Spacer > translate([40,0,9]) > difference() > { > lower_body_cube(); > translate([10,0,-25]) > screw_hole(); > translate([-10,0,-25]) > screw_hole(); > } > > ***************************************** > > -- > Cheers, Ken > bats059@gmail.com > https://vk7krj.com/running.html > https://sstv.vk7krj.com/all_bands.html > ---------------------------------------- > A baby can be defined as an ego with a noise at one end and a > smell at the other. > Our job as parents is to teach them to control all three. > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org > > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email todiscuss-leave@lists.openscad.org -- Cheers, Ken bats059@gmail.com https://vk7krj.com/running.html https://sstv.vk7krj.com/all_bands.html ---------------------------------------- A baby can be defined as an ego with a noise at one end and a smell at the other. Our job as parents is to teach them to control all three.
AM
Adrian Mariano
Wed, Jan 4, 2023 9:46 PM

It works fine in the stable 2019 OpenSCAD but fails in the dev version.  I
think this is an OpenSCAD bug in the dev version.

On Wed, Jan 4, 2023 at 3:17 PM Ken bats059@gmail.com wrote:

Thanks for the help- I tried smaller values for $fn, but the problem was
still there. Finally "fixed" it by turning off "stop on first error" in
openscad's set-up. It still showed the error, but also produced a printable
part.

On 2023-01-05 06:23, Father Horton wrote:

It worked for me.

If it hadn't, the first thing I'd try would be a smaller value for $fn.

On Wed, Jan 4, 2023 at 1:17 PM Ken bats059@gmail.com wrote:

I am getting this error-

WARNING: Attempted to remove too many vertices around this copied face,
remesh aborted!

when I try to f6 this file- f5 works fine. Searching on-line I can't
find this error mentioned anywhere.
What am I doing wrong, what does it actually mean, and how can I fix it?


include <BOSL2/std.scad>
$fn = 128;

module main_body_cube()
{
color ("green")
rotate([0,0,0])
translate([0,0,0])
cuboid ([30,10,15], rounding=1.5);
}

module lower_body_cube()
{
color ("green")
rotate([0,0,0])
translate([0,0,-10])
cuboid ([30,10,8],rounding=1.5, edges="Z");
}

module cable_cutout()
{
color ("green")
rotate([0,0,0])
translate([0,0,-6])
cuboid ([10,15,6], rounding=1);
}

module flat_bottom()
{
color ("red")
rotate([0,0,0])
translate([-20,-10,-10])
cube([40,20,5]);
}

module hex_hole()
{
$fn = 128;
translate([0,0,8])
cylinder(8, d=6);
translate([0,0,6])
cylinder(2, d1=4, d2=6, $fn=6);
translate([0,0,-12])
cylinder(25, d=3.1);
}

module screw_hole()
{
$fn = 128;
translate([0,0,8])
cylinder(15, d=3.1);
translate([0,0,6])
cylinder(15, d=3.1);
}

//Cable saddle
difference()
{
main_body_cube();
cable_cutout();
flat_bottom();
rotate([0,0,0])
translate([10,0,0])
hex_hole();
rotate([0,0,0])
translate([-10,0,0])
hex_hole();
}

//Spacer
translate([40,0,9])
difference()
{
lower_body_cube();
translate([10,0,-25])
screw_hole();
translate([-10,0,-25])
screw_hole();
}


--
Cheers, Ken
bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at
the other.
Our job as parents is to teach them to control all three.


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

--
Cheers, Kenbats059@gmail.comhttps://vk7krj.com/running.htmlhttps://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the other.
Our job as parents is to teach them to control all three.


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

It works fine in the stable 2019 OpenSCAD but fails in the dev version. I think this is an OpenSCAD bug in the dev version. On Wed, Jan 4, 2023 at 3:17 PM Ken <bats059@gmail.com> wrote: > Thanks for the help- I tried smaller values for $fn, but the problem was > still there. Finally "fixed" it by turning off "stop on first error" in > openscad's set-up. It still showed the error, but also produced a printable > part. > > On 2023-01-05 06:23, Father Horton wrote: > > It worked for me. > > If it hadn't, the first thing I'd try would be a smaller value for $fn. > > On Wed, Jan 4, 2023 at 1:17 PM Ken <bats059@gmail.com> wrote: > >> I am getting this error- >> >> WARNING: Attempted to remove too many vertices around this copied face, >> remesh aborted! >> >> when I try to f6 this file- f5 works fine. Searching on-line I can't >> find this error mentioned anywhere. >> What am I doing wrong, what does it actually mean, and how can I fix it? >> >> ****************************** >> include <BOSL2/std.scad> >> $fn = 128; >> >> >> module main_body_cube() >> { >> color ("green") >> rotate([0,0,0]) >> translate([0,0,0]) >> cuboid ([30,10,15], rounding=1.5); >> } >> >> module lower_body_cube() >> { >> color ("green") >> rotate([0,0,0]) >> translate([0,0,-10]) >> cuboid ([30,10,8],rounding=1.5, edges="Z"); >> } >> >> module cable_cutout() >> { >> color ("green") >> rotate([0,0,0]) >> translate([0,0,-6]) >> cuboid ([10,15,6], rounding=1); >> } >> >> module flat_bottom() >> { >> color ("red") >> rotate([0,0,0]) >> translate([-20,-10,-10]) >> cube([40,20,5]); >> } >> >> module hex_hole() >> { >> $fn = 128; >> translate([0,0,8]) >> cylinder(8, d=6); >> translate([0,0,6]) >> cylinder(2, d1=4, d2=6, $fn=6); >> translate([0,0,-12]) >> cylinder(25, d=3.1); >> } >> >> module screw_hole() >> { >> $fn = 128; >> translate([0,0,8]) >> cylinder(15, d=3.1); >> translate([0,0,6]) >> cylinder(15, d=3.1); >> } >> >> //Cable saddle >> difference() >> { >> main_body_cube(); >> cable_cutout(); >> flat_bottom(); >> rotate([0,0,0]) >> translate([10,0,0]) >> hex_hole(); >> rotate([0,0,0]) >> translate([-10,0,0]) >> hex_hole(); >> } >> >> //Spacer >> translate([40,0,9]) >> difference() >> { >> lower_body_cube(); >> translate([10,0,-25]) >> screw_hole(); >> translate([-10,0,-25]) >> screw_hole(); >> } >> >> ***************************************** >> >> -- >> Cheers, Ken >> bats059@gmail.com >> https://vk7krj.com/running.html >> https://sstv.vk7krj.com/all_bands.html >> ---------------------------------------- >> A baby can be defined as an ego with a noise at one end and a smell at >> the other. >> Our job as parents is to teach them to control all three. >> _______________________________________________ >> 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 > > > -- > Cheers, Kenbats059@gmail.comhttps://vk7krj.com/running.htmlhttps://sstv.vk7krj.com/all_bands.html > ---------------------------------------- > A baby can be defined as an ego with a noise at one end and a smell at the other. > Our job as parents is to teach them to control all three. > > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
BC
Bob Carlson
Thu, Jan 5, 2023 12:25 AM

I’m on the dev version and I see this occasionally. It always seems to be a coincident face after I add a new object. Moving the object slightly always seems to cure the problem, but I haven’t investigated to isolate the issue thoroughly.

-Bob
Tucson AZ

On Jan 4, 2023, at 14:46, Adrian Mariano avm4@cornell.edu wrote:

It works fine in the stable 2019 OpenSCAD but fails in the dev version.  I think this is an OpenSCAD bug in the dev version.

On Wed, Jan 4, 2023 at 3:17 PM Ken <bats059@gmail.com mailto:bats059@gmail.com> wrote:

Thanks for the help- I tried smaller values for $fn, but the problem was still there. Finally "fixed" it by turning off "stop on first error" in openscad's set-up. It still showed the error, but also produced a printable part.

On 2023-01-05 06:23, Father Horton wrote:

It worked for me.

If it hadn't, the first thing I'd try would be a smaller value for $fn.

On Wed, Jan 4, 2023 at 1:17 PM Ken <bats059@gmail.com mailto:bats059@gmail.com> wrote:

I am getting this error-

WARNING: Attempted to remove too many vertices around this copied face,
remesh aborted!

when I try to f6 this file- f5 works fine. Searching on-line I can't
find this error mentioned anywhere.
What am I doing wrong, what does it actually mean, and how can I fix it?


include <BOSL2/std.scad>
$fn = 128;

module main_body_cube()
{
color ("green")
rotate([0,0,0])
translate([0,0,0])
cuboid ([30,10,15], rounding=1.5);
}

module lower_body_cube()
{
color ("green")
rotate([0,0,0])
translate([0,0,-10])
cuboid ([30,10,8],rounding=1.5, edges="Z");
}

module cable_cutout()
{
color ("green")
rotate([0,0,0])
translate([0,0,-6])
cuboid ([10,15,6], rounding=1);
}

module flat_bottom()
{
color ("red")
rotate([0,0,0])
translate([-20,-10,-10])
cube([40,20,5]);
}

module hex_hole()
{
$fn = 128;
translate([0,0,8])
cylinder(8, d=6);
translate([0,0,6])
cylinder(2, d1=4, d2=6, $fn=6);
translate([0,0,-12])
cylinder(25, d=3.1);
}

module screw_hole()
{
$fn = 128;
translate([0,0,8])
cylinder(15, d=3.1);
translate([0,0,6])
cylinder(15, d=3.1);
}

//Cable saddle
difference()
{
main_body_cube();
cable_cutout();
flat_bottom();
rotate([0,0,0])
translate([10,0,0])
hex_hole();
rotate([0,0,0])
translate([-10,0,0])
hex_hole();
}

//Spacer
translate([40,0,9])
difference()
{
lower_body_cube();
translate([10,0,-25])
screw_hole();
translate([-10,0,-25])
screw_hole();
}


--
Cheers, Ken
bats059@gmail.com mailto:bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the other.
Our job as parents is to teach them to control all three.


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


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

--
Cheers, Ken
bats059@gmail.com mailto:bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the other.
Our job as parents is to teach them to control all three.


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


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

I’m on the dev version and I see this occasionally. It always seems to be a coincident face after I add a new object. Moving the object slightly always seems to cure the problem, but I haven’t investigated to isolate the issue thoroughly. -Bob Tucson AZ On Jan 4, 2023, at 14:46, Adrian Mariano <avm4@cornell.edu> wrote: It works fine in the stable 2019 OpenSCAD but fails in the dev version. I think this is an OpenSCAD bug in the dev version. On Wed, Jan 4, 2023 at 3:17 PM Ken <bats059@gmail.com <mailto:bats059@gmail.com>> wrote: > Thanks for the help- I tried smaller values for $fn, but the problem was still there. Finally "fixed" it by turning off "stop on first error" in openscad's set-up. It still showed the error, but also produced a printable part. > > On 2023-01-05 06:23, Father Horton wrote: >> It worked for me. >> >> If it hadn't, the first thing I'd try would be a smaller value for $fn. >> >> On Wed, Jan 4, 2023 at 1:17 PM Ken <bats059@gmail.com <mailto:bats059@gmail.com>> wrote: >>> I am getting this error- >>> >>> WARNING: Attempted to remove too many vertices around this copied face, >>> remesh aborted! >>> >>> when I try to f6 this file- f5 works fine. Searching on-line I can't >>> find this error mentioned anywhere. >>> What am I doing wrong, what does it actually mean, and how can I fix it? >>> >>> ****************************** >>> include <BOSL2/std.scad> >>> $fn = 128; >>> >>> >>> module main_body_cube() >>> { >>> color ("green") >>> rotate([0,0,0]) >>> translate([0,0,0]) >>> cuboid ([30,10,15], rounding=1.5); >>> } >>> >>> module lower_body_cube() >>> { >>> color ("green") >>> rotate([0,0,0]) >>> translate([0,0,-10]) >>> cuboid ([30,10,8],rounding=1.5, edges="Z"); >>> } >>> >>> module cable_cutout() >>> { >>> color ("green") >>> rotate([0,0,0]) >>> translate([0,0,-6]) >>> cuboid ([10,15,6], rounding=1); >>> } >>> >>> module flat_bottom() >>> { >>> color ("red") >>> rotate([0,0,0]) >>> translate([-20,-10,-10]) >>> cube([40,20,5]); >>> } >>> >>> module hex_hole() >>> { >>> $fn = 128; >>> translate([0,0,8]) >>> cylinder(8, d=6); >>> translate([0,0,6]) >>> cylinder(2, d1=4, d2=6, $fn=6); >>> translate([0,0,-12]) >>> cylinder(25, d=3.1); >>> } >>> >>> module screw_hole() >>> { >>> $fn = 128; >>> translate([0,0,8]) >>> cylinder(15, d=3.1); >>> translate([0,0,6]) >>> cylinder(15, d=3.1); >>> } >>> >>> //Cable saddle >>> difference() >>> { >>> main_body_cube(); >>> cable_cutout(); >>> flat_bottom(); >>> rotate([0,0,0]) >>> translate([10,0,0]) >>> hex_hole(); >>> rotate([0,0,0]) >>> translate([-10,0,0]) >>> hex_hole(); >>> } >>> >>> //Spacer >>> translate([40,0,9]) >>> difference() >>> { >>> lower_body_cube(); >>> translate([10,0,-25]) >>> screw_hole(); >>> translate([-10,0,-25]) >>> screw_hole(); >>> } >>> >>> ***************************************** >>> >>> -- >>> Cheers, Ken >>> bats059@gmail.com <mailto:bats059@gmail.com> >>> https://vk7krj.com/running.html >>> https://sstv.vk7krj.com/all_bands.html >>> ---------------------------------------- >>> A baby can be defined as an ego with a noise at one end and a smell at the other. >>> Our job as parents is to teach them to control all three. >>> _______________________________________________ >>> OpenSCAD mailing list >>> To unsubscribe send an email to discuss-leave@lists.openscad.org <mailto:discuss-leave@lists.openscad.org> >> >> >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org <mailto:discuss-leave@lists.openscad.org> > > -- > Cheers, Ken > bats059@gmail.com <mailto:bats059@gmail.com> > https://vk7krj.com/running.html > https://sstv.vk7krj.com/all_bands.html > ---------------------------------------- > A baby can be defined as an ego with a noise at one end and a smell at the other. > Our job as parents is to teach them to control all three. > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org <mailto:discuss-leave@lists.openscad.org> _______________________________________________ OpenSCAD mailing list To unsubscribe send an email to discuss-leave@lists.openscad.org
K
Ken
Thu, Jan 5, 2023 5:29 AM

Thanks for the advice gentlemen- yes, I am running the dev. version, I
found that turning off the "stop on first warning"in setup allowed f6 to
complete and the object to be printed ok.
I guess it's a fair price to pay for being on the bleeding edge....

On 2023-01-05 08:46, Adrian Mariano wrote:

It works fine in the stable 2019 OpenSCAD but fails in the dev
version.  I think this is an OpenSCAD bug in the dev version.

--
Cheers, Ken
bats059@gmail.com
https://vk7krj.com/running.html
https://sstv.vk7krj.com/all_bands.html

A baby can be defined as an ego with a noise at one end and a smell at the other.
Our job as parents is to teach them to control all three.

Thanks for the advice gentlemen- yes, I am running the dev. version, I found that turning off the "stop on first warning"in setup allowed f6 to complete and the object to be printed ok. I guess it's a fair price to pay for being on the bleeding edge.... On 2023-01-05 08:46, Adrian Mariano wrote: > It works fine in the stable 2019 OpenSCAD but fails in the dev > version.  I think this is an OpenSCAD bug in the dev version. > -- Cheers, Ken bats059@gmail.com https://vk7krj.com/running.html https://sstv.vk7krj.com/all_bands.html ---------------------------------------- A baby can be defined as an ego with a noise at one end and a smell at the other. Our job as parents is to teach them to control all three.