You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
333 B
OpenSCAD
23 lines
333 B
OpenSCAD
fudge = 0.1;
|
|
$fn=50;
|
|
height=3;
|
|
|
|
module sova()
|
|
{
|
|
scale=1.2;
|
|
scale([scale,scale,1]) linear_extrude(height = height) import("sova-klicenka.svg");
|
|
}
|
|
|
|
module krouzek(h)
|
|
{
|
|
difference() {
|
|
cylinder(h=h,r=3.5);
|
|
cylinder(h=h,r=2.2);
|
|
}
|
|
}
|
|
|
|
// sestava
|
|
union() {
|
|
sova();
|
|
translate([15.9,51,0]) krouzek(3);
|
|
} |