Skip to content

Instantly share code, notes, and snippets.

@strfry
Created March 2, 2019 15:02
Show Gist options
  • Save strfry/97c7a9f21510596aa28f26fda348de6b to your computer and use it in GitHub Desktop.
Save strfry/97c7a9f21510596aa28f26fda348de6b to your computer and use it in GitHub Desktop.
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