Created
March 2, 2019 15:02
-
-
Save strfry/97c7a9f21510596aa28f26fda348de6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module brimmed_text(txt, font, width) { | |
linear_extrude(4) | |
text(txt, font=font, size=33); | |
translate([0, 0, 3.9]) | |
linear_extrude(0.1) | |
square([width, 5]); | |
translate([0, 20, 3.9]) | |
linear_extrude(0.1) | |
square([width, 5]); | |
} | |
rotate([90, 0, 0]) { | |
translate([0, -10, -10]) | |
brimmed_text("Tox", "Liberation Sans:style=Bold", 80); | |
//translate([0, -10, -10]) | |
// brimmed_text("Blinkenwall", "Liberation Sans:style=Bold", 250); | |
//translate([0, -10, -10]) | |
// brimmed_text("eWindow", "Liberation Sans:style=Bold Italic", 200); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment