Skip to content

Commit 09e5dbc

Browse files
authored
Adding char E to 3d-diagonal (#1200)
1 parent 7286daa commit 09e5dbc

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

Fonts/3d-diagonal/3d-diagonal.h

+16-4
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,28 @@ class ThreeD_Diagonal : public Fonts
6767
}
6868
*/
6969

70-
/*
70+
7171
vs E()
7272
{
73-
vs character = getCharGrid();
73+
vs character = getCharGrid(13, 13);
7474

75-
//Enter the character grid in ROWS X COLS
75+
character[0] = " ,---,. ";
76+
character[1] = " ,' .' | ";
77+
character[2] = " ,---.' | ";
78+
character[3] = " | | .' ";
79+
character[4] = " : : |-, ";
80+
character[5] = " : | ;/| ";
81+
character[6] = " | : .' ";
82+
character[7] = " | | |-, ";
83+
character[8] = " ' : ;/| ";
84+
character[9] = " | | \\ ";
85+
character[10]= " | : .' ";
86+
character[11]= " | | ,' ";
87+
character[12]= " `----' ";
7688

7789
return character;
7890
}
79-
*/
91+
8092

8193
/*
8294
vs F()

0 commit comments

Comments
 (0)