init project
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.imyeyu.font.icon.model;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.AllArgsConstructor;
|
||||
|
||||
/// 从 TTF 字体导出的 SVG 字形
|
||||
/// @author Codex
|
||||
/// @since 2026-07-13 16:26
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class SvgGlyph {
|
||||
|
||||
/// 字形名称
|
||||
private String name;
|
||||
|
||||
/// Unicode 码点
|
||||
private int codePoint;
|
||||
|
||||
/// SVG `path d` 内容
|
||||
private String pathData;
|
||||
|
||||
/// 完整 SVG 文本
|
||||
private String svg;
|
||||
}
|
||||
Reference in New Issue
Block a user