Add fraktur A and K (#2450)
This commit is contained in:
parent
d3767217af
commit
dc9d7f3ac2
13 changed files with 584 additions and 395 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue