From 642341c843d322c26fb25bbb90c4c5bf91ebee49 Mon Sep 17 00:00:00 2001 From: Elmom Date: Tue, 21 Dec 2010 18:12:53 +0200 Subject: [PATCH] =?UTF-8?q?Added=20the=20letter=20"=C3=96"=20to=20bitmap.s?= =?UTF-8?q?cad,=20but=20it=20needs=20to=20be=20called=20with=20"OE"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Non ascii chars seem to be not properly supported. --- bitmap/bitmap.scad | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bitmap/bitmap.scad b/bitmap/bitmap.scad index 38a0d0d..6bb057a 100644 --- a/bitmap/bitmap.scad +++ b/bitmap/bitmap.scad @@ -423,6 +423,17 @@ module 8bit_char(char, block_size, height, include_base) { 0,1,1,1,1,1,1,0, 0,0,0,0,0,0,0,0 ], block_size, height, 8); + } else if (char == "OE") { + bitmap([ + 0,0,1,0,0,1,0,0, + 0,0,0,0,0,0,0,0, + 0,0,1,1,1,1,0,0, + 0,1,1,0,0,1,1,0, + 0,1,1,0,0,1,1,0, + 0,1,1,0,0,1,1,0, + 0,1,1,0,0,1,1,0, + 0,0,1,1,1,1,0,0 + ], block_size, height, 8); } else if (char == "a") { bitmap([ 0,0,0,0,0,0,0,0,