Fix leaning marks of turned capital F/L (#2137).

This commit is contained in:
be5invis 2023-12-31 08:56:32 -08:00
parent f3ecfc94c9
commit b3cad12960
33 changed files with 127 additions and 90 deletions

View file

@ -55,6 +55,10 @@ export class Transform {
this.unapplyToSink(pt, sink);
return sink;
}
unapplyIfPresent(pt) {
if (pt) return this.unapply(pt);
else return null;
}
inverse() {
const denom = this.xx * this.yy - this.xy * this.yx;
return new Transform(