discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

has anyone an idea what this is for ?

KE
Karl Exler
Sat, Mar 4, 2023 8:07 AM

Tip: it makes wifes happy ;-)

Karl

$fn=100;

difference()
{
Grundplatte();

//3 x groß
translate([-7,0,0]) Zy(10,12,15);
translate([14,-13,0]) Zy(15,12,15);
translate([12,25,0]) Zy(12,12,15);

//3 x mittel
translate([-10,-28,0]) Zy(7.5,7.5,15);
translate([27,10,0]) Zy(7.5,7.5,15);
translate([-25,18,0]) Zy(7.5,7.5,15);

//9 x klein

translate([-27,-18,0]) Zy(2.5,2.5,15);
translate([-27,-8,0]) Zy(2.5,2.5,15);
translate([-18,-16,0]) Zy(2.5,2.5,15);
translate([-5,-12,0]) Zy(2.5,2.5,15);

translate([12,11,0]) Zy(2.5,2.5,15);
translate([18,3,0]) Zy(2.5,2.5,15);
translate([8,2,0]) Zy(2.5,2.5,15);

translate([-4,32,0]) Zy(2.5,2.5,15);
translate([-15,27,0]) Zy(2.5,2.5,15);
translate([-8,19,0]) Zy(2.5,2.5,15);

//4xoval
translate([8,-28,0]) rotate([0,0,45])  Zy(2.5,10,15);
translate([2,12,0]) rotate([0,0,-60])  Zy(2.5,10,15);
translate([-29,2.5,0]) Zy(10,2,15);
translate([31,-12,0]) rotate([0,0,-15])  Zy(2.5,10,15);

}

module Grundplatte()
{
rotate_extrude(angle=360)
polygon(points=[[-78/2,0],[-76/2,2],[0,2],[0,0]]);
}

module Zy(verzerrungx,verzerrungy,H)
{
resize (newsize=[verzerrungx,verzerrungy,H])

translate([0,0,-4])
cylinder(h=H,d=5);
};

Tip: it makes wifes happy ;-) Karl $fn=100; difference() { Grundplatte(); //3 x groß translate([-7,0,0]) Zy(10,12,15); translate([14,-13,0]) Zy(15,12,15); translate([12,25,0]) Zy(12,12,15); //3 x mittel translate([-10,-28,0]) Zy(7.5,7.5,15); translate([27,10,0]) Zy(7.5,7.5,15); translate([-25,18,0]) Zy(7.5,7.5,15); //9 x klein translate([-27,-18,0]) Zy(2.5,2.5,15); translate([-27,-8,0]) Zy(2.5,2.5,15); translate([-18,-16,0]) Zy(2.5,2.5,15); translate([-5,-12,0]) Zy(2.5,2.5,15); translate([12,11,0]) Zy(2.5,2.5,15); translate([18,3,0]) Zy(2.5,2.5,15); translate([8,2,0]) Zy(2.5,2.5,15); translate([-4,32,0]) Zy(2.5,2.5,15); translate([-15,27,0]) Zy(2.5,2.5,15); translate([-8,19,0]) Zy(2.5,2.5,15); //4xoval translate([8,-28,0]) rotate([0,0,45])  Zy(2.5,10,15); translate([2,12,0]) rotate([0,0,-60])  Zy(2.5,10,15); translate([-29,2.5,0]) Zy(10,2,15); translate([31,-12,0]) rotate([0,0,-15])  Zy(2.5,10,15); } module Grundplatte() { rotate_extrude(angle=360) polygon(points=[[-78/2,0],[-76/2,2],[0,2],[0,0]]); } module Zy(verzerrungx,verzerrungy,H) { resize (newsize=[verzerrungx,verzerrungy,H]) translate([0,0,-4]) cylinder(h=H,d=5); };
BR
Bob Roos
Sat, Mar 4, 2023 2:42 PM

Hi Karl,

Looks like a spaghetti sorter.for the larger holse.

Not sure about the smaller ones

Saturday, March 4, 2023, 3:07:38 AM, you wrote:

Tip: it makes wifes happy ;-)

Karl

$fn=100;

difference()
{
Grundplatte();

//3 x groß
translate([-7,0,0]) Zy(10,12,15);
translate([14,-13,0]) Zy(15,12,15);
translate([12,25,0]) Zy(12,12,15);

//3 x mittel
translate([-10,-28,0]) Zy(7.5,7.5,15);
translate([27,10,0]) Zy(7.5,7.5,15);
translate([-25,18,0]) Zy(7.5,7.5,15);

//9 x klein

translate([-27,-18,0]) Zy(2.5,2.5,15);
translate([-27,-8,0]) Zy(2.5,2.5,15);
translate([-18,-16,0]) Zy(2.5,2.5,15);
translate([-5,-12,0]) Zy(2.5,2.5,15);

translate([12,11,0]) Zy(2.5,2.5,15);
translate([18,3,0]) Zy(2.5,2.5,15);
translate([8,2,0]) Zy(2.5,2.5,15);

translate([-4,32,0]) Zy(2.5,2.5,15);
translate([-15,27,0]) Zy(2.5,2.5,15);
translate([-8,19,0]) Zy(2.5,2.5,15);

//4xoval
translate([8,-28,0]) rotate([0,0,45])  Zy(2.5,10,15);
translate([2,12,0]) rotate([0,0,-60])  Zy(2.5,10,15);
translate([-29,2.5,0]) Zy(10,2,15);
translate([31,-12,0]) rotate([0,0,-15])  Zy(2.5,10,15);

}

module Grundplatte()
{
rotate_extrude(angle=360)
polygon(points=[[-78/2,0],[-76/2,2],[0,2],[0,0]]);
}

module Zy(verzerrungx,verzerrungy,H)
{
resize (newsize=[verzerrungx,verzerrungy,H])

translate([0,0,-4])
cylinder(h=H,d=5);
};


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

--
have Fun,
Bob                          mailto:roosbob@wybatap.com

Hi Karl, Looks like a spaghetti sorter.for the larger holse. Not sure about the smaller ones Saturday, March 4, 2023, 3:07:38 AM, you wrote: > Tip: it makes wifes happy ;-) > Karl > $fn=100; > difference() > { > Grundplatte(); > //3 x groß > translate([-7,0,0]) Zy(10,12,15); > translate([14,-13,0]) Zy(15,12,15); > translate([12,25,0]) Zy(12,12,15); > //3 x mittel > translate([-10,-28,0]) Zy(7.5,7.5,15); > translate([27,10,0]) Zy(7.5,7.5,15); > translate([-25,18,0]) Zy(7.5,7.5,15); > //9 x klein > translate([-27,-18,0]) Zy(2.5,2.5,15); > translate([-27,-8,0]) Zy(2.5,2.5,15); > translate([-18,-16,0]) Zy(2.5,2.5,15); > translate([-5,-12,0]) Zy(2.5,2.5,15); > translate([12,11,0]) Zy(2.5,2.5,15); > translate([18,3,0]) Zy(2.5,2.5,15); > translate([8,2,0]) Zy(2.5,2.5,15); > translate([-4,32,0]) Zy(2.5,2.5,15); > translate([-15,27,0]) Zy(2.5,2.5,15); > translate([-8,19,0]) Zy(2.5,2.5,15); > //4xoval > translate([8,-28,0]) rotate([0,0,45])  Zy(2.5,10,15); > translate([2,12,0]) rotate([0,0,-60])  Zy(2.5,10,15); > translate([-29,2.5,0]) Zy(10,2,15); > translate([31,-12,0]) rotate([0,0,-15])  Zy(2.5,10,15); > } > module Grundplatte() > { > rotate_extrude(angle=360) > polygon(points=[[-78/2,0],[-76/2,2],[0,2],[0,0]]); > } > module Zy(verzerrungx,verzerrungy,H) > { > resize (newsize=[verzerrungx,verzerrungy,H]) > translate([0,0,-4]) > cylinder(h=H,d=5); > }; > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org -- have Fun, Bob mailto:roosbob@wybatap.com
JB
Jordan Brown
Sat, Mar 4, 2023 2:48 PM

Decorative coaster or trivet?

Decorative coaster or trivet?
CA
Carsten Arnholm
Sat, Mar 4, 2023 5:07 PM

It is the Virgo cluster of galaxies.

It is the Virgo cluster of galaxies.