/* Horus eye sculpure (c) 2021 Christian Grieger GNU GENERAL PUBLIC LICENSE */ HT = 7.0; // Thickness/Height of the Horus Sculpture union() { // Horus Eye difference() { translate([-21, -9, 0]) { linear_extrude(height=HT) { scale(0.057) import("horus.svg"); } } translate([-0.3, -6.7, -HT/2]) { cylinder(h=HT*2, d=3.2, $fn=40); } } // Triangle difference() { linear_extrude(height=HT) { translate([0, -10, 0]) rotate([0, 0, 90]) scale([0.85, 1, 1]) circle(r=41, $fn=3); } translate([0, 0, -HT/2]) linear_extrude(height=2*HT) { translate([0, -10, 0]) rotate([0, 0, 90]) scale([0.85, 1, 1]) circle(r=37, $fn=3); } } }