Anki/ts/routes/image-occlusion/shapes/ellipse.ts
llama c33974f6ab
Fix polygons closing when clicking existing masks while editing IO (#3990)
* fix polygons closing when clicking existing masks while editing io

* disallow selecting new polygons

* update CONTRIBUTORS

* preserve ids when pushing canvas state to undo stack

* rehandle tool changes after undoing/redoing

the polygon tool makes all objects unselectable, which isn't
preserved when restoring the canvas state after an undo/redo
2025-05-10 16:32:44 +10:00

58 lines
1.6 KiB
TypeScript

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import { fabric } from "fabric";
import type { ConstructorParams, Size } from "../types";
import type { ShapeDataForCloze } from "./base";
import { Shape } from "./base";
import { floatToDisplay } from "./lib";
import { xFromNormalized, xToNormalized, yFromNormalized, yToNormalized } from "./position";
export class Ellipse extends Shape {
rx: number;
ry: number;
constructor({ rx = 0, ry = 0, ...rest }: ConstructorParams<Ellipse> = {}) {
super(rest);
this.rx = rx;
this.ry = ry;
this.id = "ellipse-" + new Date().getTime();
}
toDataForCloze(): EllipseDataForCloze {
return {
...super.toDataForCloze(),
rx: floatToDisplay(this.rx),
ry: floatToDisplay(this.ry),
};
}
toFabric(size: Size): fabric.Ellipse {
const absolute = this.toAbsolute(size);
return new fabric.Ellipse(absolute);
}
toNormal(size: Size): Ellipse {
return new Ellipse({
...this,
...super.normalPosition(size),
rx: xToNormalized(size, this.rx),
ry: yToNormalized(size, this.ry),
});
}
toAbsolute(size: Size): Ellipse {
return new Ellipse({
...this,
...super.absolutePosition(size),
rx: xFromNormalized(size, this.rx),
ry: yFromNormalized(size, this.ry),
});
}
}
interface EllipseDataForCloze extends ShapeDataForCloze {
rx: string;
ry: string;
}