We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d9342ff + be7d70c commit d000237Copy full SHA for d000237
Fonts/Straight/straight.h
@@ -73,16 +73,19 @@ class Straight : public Fonts
73
return character;
74
}
75
76
- /*
+
77
char **F()
78
{
79
char **character = getCharGrid();
80
81
//Enter the character grid in ROWS X COLS
82
+ character[1][0]=character[2][0]='|';
83
+ character[0][1]=character[0][2]=character[1][1]='_';
84
85
86
87
- */
88
89
90
/*
91
char **G()
@@ -753,4 +756,4 @@ char **Z()
753
756
754
757
*/
755
758
};
-#endif
759
+#endif
example.cpp
@@ -7,5 +7,7 @@ int main()
7
8
Ascii a = Ascii(straight);
9
a.print("Z");
10
+ Ascii b = Ascii(straight);
11
+ b.print("F");
12
return 0;
13
0 commit comments