Skip to content

Commit

Permalink
feat/add-o-to-font-block (#1161)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-py authored Oct 12, 2024
1 parent 8cd055e commit d4a9464
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -791,17 +791,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
*/

/*

vs o()
{
vs character = getCharGrid();
//Enter the character grid in ROWS X COLS
vs character = getCharGrid(11, 20);

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

return character;
}

*/


/*
vs p()
Expand Down

0 comments on commit d4a9464

Please sign in to comment.