From a48551dffbd406d0eb01b4a2aaf0501272b70f53 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 5 Mar 2015 17:30:29 -0500 Subject: [PATCH] #1239 Changed font to a more generally available one --- examples/Basics/LetterBlock.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Basics/LetterBlock.scad b/examples/Basics/LetterBlock.scad index 66ca5d38..4cf4a916 100644 --- a/examples/Basics/LetterBlock.scad +++ b/examples/Basics/LetterBlock.scad @@ -14,7 +14,7 @@ module LetterBlock(letter, size=30) { linear_extrude(height=size, convexity=4) text(letter, size=size*22/30, - font="Tahoma", + font="Bitstream Vera Sans", halign="center", valign="center"); }