Skip to content

Commit

Permalink
add letter B to 3d-diagonal
Browse files Browse the repository at this point in the history
  • Loading branch information
avi-dey committed Oct 31, 2024
1 parent 207b770 commit d258d18
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions Fonts/3d-diagonal/3d-diagonal.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class ThreeD_Diagonal : public Fonts
{
static const int rows = 12;
static const int rows = 13;
static const int cols = 20;

public:
Expand Down Expand Up @@ -34,16 +34,26 @@ class ThreeD_Diagonal : public Fonts
}


/*
vs B()
{
vs character = getCharGrid();
//Enter the character grid in ROWS X COLS
vs B()
{
vs character = getCharGrid(13, 18);

character[0] = " ,---,. ";
character[1] = " ,' .' \\ ";
character[2] = ",---.' .' | ";
character[3] = "| | |: | ";
character[4] = ": : : / ";
character[5] = ": | ; ";
character[6] = "| : \\ ";
character[7] = "| | . | ";
character[8] = "' : '; | ";
character[9] = "| | | ; ";
character[10] = "| : / ";
character[11] = "| | ,' ";
character[12] = "`----' ";

return character;
}
*/
return character;
}

/*
vs C()
Expand Down

0 comments on commit d258d18

Please sign in to comment.