FCT
载入中...
搜索中...
未找到
Font.h
浏览该文件的文档.
1//
2// Created by Administrator on 2025/5/4.
3//
4
5#ifndef FONT_H
6#define FONT_H
7class Font {
8protected:
9 float m_ascender;
11 float m_height;
12 struct GlyphInfo
13 {
14 float advanceX;
15 float advanceY;
19 float bitmapTop;
20 std::vector<float> outlineCommands;
21 };//从FCTv2移植过来的, todo:待删除
22public:
23
24};
25
26
27
28#endif //FONT_H
float m_ascender
定义 Font.h:9
float m_descender
定义 Font.h:10
float m_height
定义 Font.h:11
std::vector< float > outlineCommands
定义 Font.h:20