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:
parent
64a1182d96
commit
642341c843
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue