refactor(font): move Metrics out of face

in preparation to move ownership of metrics from faces to collections
This commit is contained in:
Qwerasd
2025-01-06 17:39:53 -05:00
parent 037de64ea2
commit 540fcc0b69
12 changed files with 24 additions and 24 deletions

View File

@@ -29,7 +29,7 @@ const Collection = font.Collection;
const Face = font.Face;
const Glyph = font.Glyph;
const Library = font.Library;
const Metrics = font.face.Metrics;
const Metrics = font.Metrics;
const Presentation = font.Presentation;
const Style = font.Style;
const RenderOptions = font.face.RenderOptions;