Skip to content

Commit d258d18

Browse files
committed
add letter B to 3d-diagonal
1 parent 207b770 commit d258d18

File tree

1 file changed

+20
-10
lines changed

1 file changed

+20
-10
lines changed

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

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class ThreeD_Diagonal : public Fonts
77
{
8-
static const int rows = 12;
8+
static const int rows = 13;
99
static const int cols = 20;
1010

1111
public:
@@ -34,16 +34,26 @@ class ThreeD_Diagonal : public Fonts
3434
}
3535

3636

37-
/*
38-
vs B()
39-
{
40-
vs character = getCharGrid();
41-
42-
//Enter the character grid in ROWS X COLS
37+
vs B()
38+
{
39+
vs character = getCharGrid(13, 18);
40+
41+
character[0] = " ,---,. ";
42+
character[1] = " ,' .' \\ ";
43+
character[2] = ",---.' .' | ";
44+
character[3] = "| | |: | ";
45+
character[4] = ": : : / ";
46+
character[5] = ": | ; ";
47+
character[6] = "| : \\ ";
48+
character[7] = "| | . | ";
49+
character[8] = "' : '; | ";
50+
character[9] = "| | | ; ";
51+
character[10] = "| : / ";
52+
character[11] = "| | ,' ";
53+
character[12] = "`----' ";
4354

44-
return character;
45-
}
46-
*/
55+
return character;
56+
}
4757

4858
/*
4959
vs C()

0 commit comments

Comments
 (0)