6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
18 lines
410 B
JavaScript
18 lines
410 B
JavaScript
import TTFGlyph from './TTFGlyph';
|
|
|
|
/**
|
|
* Represents a TrueType glyph in the WOFF2 format, which compresses glyphs differently.
|
|
*/
|
|
export default class WOFF2Glyph extends TTFGlyph {
|
|
type = 'WOFF2';
|
|
|
|
_decode() {
|
|
// We have to decode in advance (in WOFF2Font), so just return the pre-decoded data.
|
|
return this._font._transformedGlyphs[this.id];
|
|
}
|
|
|
|
_getCBox() {
|
|
return this.path.bbox;
|
|
}
|
|
}
|