Skip to content

Commit

Permalink
K to block (#1159)
Browse files Browse the repository at this point in the history
* feat/add-k-to-font-block

* feat/add-k-to-font-block
  • Loading branch information
nakul-py authored Oct 12, 2024
1 parent 7c18249 commit fd8eb0f
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -743,17 +743,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
return character;
}

/*

vs k()
{
vs character = getCharGrid();
vs character = getCharGrid(11, 20);

//Enter the character grid in ROWS X COLS
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 l()
Expand Down

0 comments on commit fd8eb0f

Please sign in to comment.