Rev 1935 | Rev 2009 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1935 | Rev 1936 | ||
---|---|---|---|
Line 10... | Line 10... | ||
10 | 10 | ||
11 | #include <vector>
|
11 | #include <vector>
|
12 | #include "line.h"
|
12 | #include "line.h"
|
13 | 13 | ||
14 | struct glyph { |
14 | struct glyph { |
- | 15 | ||
15 | std::vector<line> lines; |
16 | std::vector<line> lines; |
- | 17 | int nln; |
|
16 | int width, height; |
18 | int width, height; |
- | 19 | ||
17 | glyph (const std::vector<line>& vl); |
20 | glyph (const std::vector<line>& vl); |
18 | glyph (int w = 3, int h = 8) {width = w; height = h;} |
21 | glyph (int w = 3, int h = 8) {width = w; height = h;} |
- | 22 | ||
19 | void find_width_height (); |
23 | void find_width_height (); |
20 | }; |
24 | }; |
21 | 25 | ||
22 | #endif
|
26 | #endif
|
23 | 27 |