-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathopengl-draw.h
152 lines (140 loc) · 20.3 KB
/
opengl-draw.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*#-------------------------------------------------
#
# Draw functions for OpenGL
#
# by AbsurdePhoton - www.absurdephoton.fr
#
# v1 - 2019/11/08
#
# - circles
# - cones
# - spheres
# - CMF in color spaces
#
#-------------------------------------------------*/
#ifndef OPENGLDRAW_H
#define OPENGLDRAW_H
#include "opencv2/opencv.hpp"
void DrawCMFinXYZ(const float &size3d, const bool spectrum_locus); // draw Color Matching Functions in XYZ color space
void DrawCMFinLuv(const float &size3d); // draw Color Matching Functions in L*u*v* color space
void DrawCMFinLab(const float &size3d); // draw Color Matching Functions in L*a*b* color space
void DrawCMFinLMS(const float &size3d); // draw Color Matching Functions in LMS color space
void DrawCMFinHLAB(const float &size3d); // draw Color Matching Functions in Hunter LAB color space
void DrawFilledCircleXY(const float ¢er_x, const float ¢er_y, const float ¢er_z, const float &radius, const int &segments, const float &R, const float &G, const float &B); // filled circle in XY plane
void DrawCircleXY(const float ¢er_x, const float ¢er_y, const float ¢er_z, const float &radius, const int &segments, const float &R, const float &G, const float &B, const float &width); // circle in XY plane
void DrawCircleArcXY(const float ¢er_x, const float ¢er_y, const float ¢er_z, const float &radius, const int &segments, const float &begin, const float &end, const float &R, const float &G, const float &B, const float &width);
void DrawConeX(const float ¢er_x, const float ¢er_y, const float ¢er_z, const float &length, const float &radius, const int &segments, const float &R, const float &G, const float &B); // cone along X axis
void DrawConeY(const float ¢er_x, const float ¢er_y, const float ¢er_z, const float &length, const float &radius, const int &segments, const float &R, const float &G, const float &B); // cone along Y axis
void DrawConeZ(const float ¢er_x, const float ¢er_y, const float ¢er_z, const float &length, const float &radius, const int &segments, const float &R, const float &G, const float &B); // cone along Z axis
void DrawSphere(const int &ndiv, const float &radius, const float &x, const float &y, const float &z, const float &r, const float &g, const float &b); // sphere
void DrawLinesFromMatrix(const cv::Mat &matrix, const float &x0, const float &y0, const float &z0, const float &scale, const float &R, const float &G, const float &B, const float &width);
void DrawText(const std::string &text, const float &x0, const float &y0, const float &z0, const float &scale, const float &R, const float &G, const float &B, const float &width);
const int characters_matrix_cols = 8;
const int characters_matrix_rows = 8;
const int characters_nb = 97;
const int characters_begin = 32;
const int characters_end = 127;
struct struct_characters {
int nb;
std::string description;
int data[characters_matrix_cols][characters_matrix_rows];
};
const struct_characters characters[characters_nb] = {
{32, "char_space", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{33, "char_exclamation", {{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{34, "char_quote", {{0,0,1,0,1,0,0,0},{0,0,1,0,1,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{35, "char_hash", {{0,0,1,0,1,0,0,0},{0,0,1,0,1,0,0,0},{1,1,1,1,1,1,1,0},{0,0,1,0,1,0,0,0},{1,1,1,1,1,1,1,0},{0,0,1,0,1,0,0,0},{0,0,1,0,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{36, "char_dollar", {{0,0,0,1,0,0,0,0},{0,0,1,1,1,1,0,0},{0,1,0,1,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,1,0,1,0,0},{0,1,1,1,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{37, "char_percent", {{0,0,0,0,0,0,0,0},{0,1,1,0,0,1,0,0},{0,1,1,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,1,1,0,0},{0,1,0,0,1,1,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{38, "char_ampersand", {{0,0,1,1,0,0,0,0},{0,1,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,0,1,0,0,0,0},{1,0,0,0,1,1,0,0},{1,0,0,0,1,0,0,0},{0,1,1,1,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{39, "char_apostrophe", {{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{40, "char_parenthesis_left", {{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{41, "char_parenthesis_right", {{0,0,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{42, "char_asterisk", {{0,0,0,1,0,0,0,0},{1,0,0,1,0,0,1,0},{0,1,0,1,0,1,0,0},{0,0,1,1,1,0,0,0},{0,1,0,1,0,1,0,0},{1,0,0,1,0,0,1,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{43, "char_plus", {{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{1,1,1,1,1,1,1,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{44, "char_comma", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0}}},
{45, "char_minus", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{1,1,1,1,1,1,1,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{46, "char_period", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{47, "char_slash", {{0,0,0,0,0,0,1,0},{0,0,0,0,0,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,0,0,0,0,0,0},{1,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{48, "digit_0", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,1,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{49, "digit_1", {{0,0,0,1,0,0,0,0},{0,0,1,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{50, "digit_2", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,1,1,1,1,0,0},{0,0,0,0,0,0,0,0}}},
{51, "digit_3", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,1,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{52, "digit_4", {{0,0,0,1,1,0,0,0},{0,0,1,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,1,1,1,1,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,1,1,0,0},{0,0,0,0,0,0,0,0}}},
{53, "digit_5", {{0,1,1,1,1,1,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,1,1,1,0,0,0},{0,0,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{54, "digit_6", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,0,0,0},{0,1,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{55, "digit_7", {{0,1,1,1,1,1,0,0},{0,0,0,0,0,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{56, "digit_8", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{57, "digit_9", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,1,0,0},{0,0,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{58, "char_colon", {{0,0,0,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{59, "char_semicolon", {{0,0,0,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0}}},
{60, "char_inferior", {{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{61, "char_equal", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{1,1,1,1,1,1,1,0},{0,0,0,0,0,0,0,0},{1,1,1,1,1,1,1,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{62, "char_superior", {{0,1,0,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{63, "char_question", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{64, "char_at", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,1,1,1,0,0},{0,1,0,1,0,1,0,0},{0,1,0,1,1,1,0,0},{0,1,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{65, "letter_A", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{66, "letter_B", {{0,1,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{67, "letter_C", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{68, "letter_D", {{0,1,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{69, "letter_E", {{0,1,1,1,1,1,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,1,1,1,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,1,1,1,1,0,0},{0,0,0,0,0,0,0,0}}},
{70, "letter_F", {{0,1,1,1,1,1,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,1,1,1,1,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{71, "letter_G", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,0,0,0},{0,1,0,1,1,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{72, "letter_H", {{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{73, "letter_I", {{0,0,1,1,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{74, "letter_J", {{0,0,0,1,1,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,0,1,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{75, "letter_K", {{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,1,0,0,0},{0,1,1,1,0,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{76, "letter_L", {{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,1,1,1,0,0},{0,0,0,0,0,0,0,0}}},
{77, "letter_M", {{1,0,0,0,0,0,1,0},{1,1,0,0,0,1,1,0},{1,0,1,0,1,0,1,0},{1,0,0,1,0,0,1,0},{1,0,0,0,0,0,1,0},{1,0,0,0,0,0,1,0},{1,0,0,0,0,0,1,0},{0,0,0,0,0,0,0,0}}},
{78, "letter_N", {{0,1,0,0,0,1,0,0},{0,1,1,0,0,1,0,0},{0,1,0,1,0,1,0,0},{0,1,0,1,0,1,0,0},{0,1,0,0,1,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{79, "letter_O", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{80, "letter_P", {{0,0,1,1,1,0,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{81, "letter_Q", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,1,1,0,0}}},
{82, "letter_R", {{0,1,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,0,0,0},{0,1,0,1,0,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{83, "letter_S", {{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{84, "letter_T", {{0,1,1,1,1,1,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{85, "letter_U", {{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{86, "letter_V", {{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,0,1,0,0,0},{0,0,1,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{87, "letter_W", {{1,0,0,0,0,0,1,0},{1,0,0,0,0,0,1,0},{1,0,0,0,0,0,1,0},{0,1,0,1,0,1,0,0},{0,1,0,1,0,1,0,0},{0,0,1,0,1,0,0,0},{0,0,1,0,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{88, "letter_X", {{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{89, "letter_Y", {{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{90, "letter_Z", {{0,1,1,1,1,1,0,0},{0,0,0,0,0,1,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,1,1,1,1,0,0},{0,0,0,0,0,0,0,0}}},
{91, "char_bracket_left", {{0,0,1,1,1,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{92, "char_antislash", {{1,0,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,0,1,0,0},{0,0,0,0,0,0,1,0},{0,0,0,0,0,0,0,0}}},
{93, "char_bracket_right", {{0,0,1,1,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{94, "char_caret", {{0,0,0,1,0,0,0,0},{0,0,1,0,1,0,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{95, "char_underscore", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{1,1,1,1,1,1,1,0}}},
{96, "char_grave_accent", {{0,0,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{97, "letter_a", {{0,0,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,1,0,0},{0,0,1,1,1,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,1,0},{0,0,0,0,0,0,0,0}}},
{98, "letter_b", {{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,1,0,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{99, "letter_c", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{100, "letter_d", {{0,0,0,0,0,1,0,0},{0,0,0,0,0,1,0,0},{0,0,0,1,1,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,0,1,1,0,1,0},{0,0,0,0,0,0,0,0}}},
{101, "letter_e", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,1,1,1,1,0,0},{0,1,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{102, "letter_f", {{0,0,0,1,1,0,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,0,0,0},{0,1,1,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{103, "letter_g", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,1,1,0,1,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,1,0,0},{0,0,0,0,0,1,0,0},{0,0,1,1,1,0,0,0}}},
{104, "letter_h", {{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,1,1,0,0,0},{0,1,1,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{105, "letter_i", {{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{106, "letter_j", {{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,1,1,0,0,0,0,0}}},
{107, "letter_k", {{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,1,0,0,0,0},{0,1,1,0,0,0,0,0},{0,1,0,1,0,0,0,0},{0,1,0,0,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{108, "letter_l", {{0,0,1,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,1},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{109, "letter_m", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,1,0,1,1,0,0},{1,0,0,1,0,0,1,0},{1,0,0,1,0,0,1,0},{1,0,0,0,0,0,1,0},{1,0,0,0,0,0,1,0},{0,0,0,0,0,0,0,0}}},
{110, "letter_n", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,0,1,1,0,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{111, "letter_o", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{112, "letter_p", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,0,1,1,0,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,1,1,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0}}},
{113, "letter_q", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,1,0,1,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,0,1,0,0,0}}},
{114, "letter_r", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,0,1,1,0,0,0},{0,1,1,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{115, "letter_s", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,1,1,0,0,0},{0,1,0,0,0,0,0,0},{0,0,1,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,1,1,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{116, "letter_t", {{0,0,0,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,1,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{117, "letter_u", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,1,0,0,1,0,0,0},{0,0,1,1,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{118, "letter_v", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,1,0,0,0,1,0,0},{0,0,1,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{119, "letter_w", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{1,0,0,0,0,0,1,0},{1,0,0,0,0,0,1,0},{1,0,0,1,0,0,1,0},{1,0,1,0,1,0,1,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{120, "letter_x", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,0,0,0,1,0,0},{0,0,1,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,1,0,0,0},{0,1,0,0,0,1,0,0},{0,0,0,0,0,0,0,0}}},
{121, "letter_y", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,1,0,0,1,0,0},{0,0,0,1,1,1,0,0},{0,0,0,0,0,1,0,0},{0,0,1,1,1,0,0,0}}},
{122, "letter_z", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,1,1,1,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,1,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{123, "char_brace_left", {{0,0,0,1,1,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,1,0,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,1,0,0,0,0,0},{0,0,0,1,1,0,0,0},{0,0,0,0,0,0,0,0}}},
{124, "char_vertical_bar", {{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{125, "char_brace_right", {{0,1,1,0,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,0,1,0,0,0},{0,0,0,1,0,0,0,0},{0,0,0,1,0,0,0,0},{0,1,1,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{126, "char_tilde", {{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,1,1,0,0,0,0,0},{1,0,0,1,0,0,1,0},{0,0,0,0,1,1,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0},{0,0,0,0,0,0,0,0}}},
{127, "char_plain", {{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1}}}
};
#endif // OPENGLDRAW_H