Added the letter "Ö" to bitmap.scad, but it needs to be called with "OE"

Non ascii chars seem to be not properly supported.
This commit is contained in:
Elmom 2010-12-21 18:12:53 +02:00
parent 64a1182d96
commit 642341c843

View file

@ -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,