Add draft darknebula logo

This commit is contained in:
maride 2017-12-16 15:54:31 +01:00
parent 3221838c65
commit 7c6b43d46f

25
Logo_darknebula.scad Normal file
View File

@ -0,0 +1,25 @@
RESOLUTION=180;
difference() {
union() {
translate([-4, -1])
circle(r=3, $fn=RESOLUTION);
circle(r=5, $fn=RESOLUTION);
translate([6, 0])
circle(r=7, $fn=RESOLUTION);
translate([12, 2])
circle(r=4, $fn=RESOLUTION);
translate([13, -1])
circle(r=5, $fn=RESOLUTION);
}
union() {
translate([6, 0]) {
square([1, 6], center=true);
rotate([0, 0, 120])
square([1, 6], center=true);
rotate([0, 0, 240])
square([1, 6], center=true);
}
}
}