Add fraktur A and K (#2450)

This commit is contained in:
Belleve 2024-08-01 00:30:22 -10:00 committed by GitHub
parent d3767217af
commit dc9d7f3ac2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 584 additions and 395 deletions

View file

@ -27,6 +27,20 @@ export class Box {
withYPadding(d) {
return new Box(this.top - d, this.bottom + d, this.left, this.right);
}
padLeft(d) {
return new Box(this.top, this.bottom, this.left + d, this.right);
}
padRight(d) {
return new Box(this.top, this.bottom, this.left, this.right - d);
}
padTop(d) {
return new Box(this.top - d, this.bottom, this.left, this.right);
}
padBottom(d) {
return new Box(this.top, this.bottom + d, this.left, this.right);
}
withXMix(pL, pR) {
return new Box(
this.top,