#1239 Use Liberation Sans font

master
Marius Kintel 2015-03-05 17:43:50 -05:00
parent 778752a8dc
commit ca0fc467a6
1 changed files with 28 additions and 14 deletions

View File

@ -1,4 +1,6 @@
font = "Bank Gothic";
font = "Liberation Sans";
// Nicer, but not generally installed:
// font = "Bank Gothic";
module G() offset(0.3) text("G", size=10, halign="center", valign="center", font = font);
module E() offset(0.3) text("E", size=10, halign="center", valign="center", font = font);
@ -20,17 +22,29 @@ intersection() {
color("Ivory") GEB();
color("MediumOrchid") translate([0,0,-20]) render()
linear_extrude(1) difference() {
square(40, center=true);
projection() GEB();
}
#color("DarkMagenta") rotate([90,0,0]) translate([0,0,-20]) render() linear_extrude(1) difference() {
translate([0,0.5]) square([40,39], center=true);
projection() rotate([-90,0,0]) GEB();
}
color("MediumSlateBlue") rotate([90,0,90]) translate([0,0,-20]) render() linear_extrude(1) difference() {
translate([-0.5,0.5]) square([39,39], center=true);
projection() rotate([0,-90,-90]) GEB();
}
color("MediumOrchid")
translate([0,0,-20])
linear_extrude(1)
difference() {
square(40, center=true);
projection() GEB();
}
color("DarkMagenta")
rotate([90,0,0])
translate([0,0,-20])
linear_extrude(1)
difference() {
translate([0,0.5]) square([40,39], center=true);
projection() rotate([-90,0,0]) GEB();
}
color("MediumSlateBlue")
rotate([90,0,90])
translate([0,0,-20])
linear_extrude(1)
difference() {
translate([-0.5,0.5]) square([39,39], center=true);
projection() rotate([0,-90,-90]) GEB();
}