* Add special k-dot shape (#1978).

This commit is contained in:
be5invis 2023-09-03 13:28:26 -07:00
parent 35c252a174
commit 0e6967c328
5 changed files with 108 additions and 42 deletions

View file

@ -132,6 +132,17 @@ export const Joining = {
}
};
export const HintClass = {
get(glyph) {
if (glyph && glyph.related) return glyph.related.hintClass;
else return null;
},
set(glyph, script, style) {
if (!glyph.related) glyph.related = {};
glyph.related.hintClass = [script, style];
}
};
///////////////////////////////////////////////////////////////////////////////////////////////////
const CvTagCache = new Map();