Add frakturs in the Letterlike Symbols (#2438)

* * Add characters:
  - BLACK-LETTER CAPITAL I (`U+2111`).
  - BLACK-LETTER CAPITAL R (`U+211C`).

* Complete frakturs in Letterlike Symbols block

* Update geom cache version
This commit is contained in:
Belleve 2024-07-28 03:30:59 -10:00 committed by GitHub
parent 61ad3c365c
commit bff9e0b1c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 496 additions and 8 deletions

View file

@ -13,6 +13,7 @@ const TAG_END_STRUCT_TYPE = 0x12340008;
const TAG_TYPED_POINT = 0x12340010;
const TAG_GIZMO = 0x12340011;
const TAG_LIST_LENGTH = 0x12340012;
const POINT = 0x12340013;
const TAG_EMBED_BEGIN = 0x12340020;
const TAG_EMBED_END = 0x12340021;
@ -88,6 +89,12 @@ export class Hasher {
return this;
}
point(z) {
this.u32(TAG_TYPED_POINT);
this.f64(z.x);
this.f64(z.y);
return this;
}
typedPoint(z) {
this.u32(TAG_TYPED_POINT);
this.u32(z.type);