c828a2eb6f
* Refactor: Add index to shapes package * Add shape draw callback API to setupImageCloze * Expose IO drawing API, switch away from image cloze naming We currently use "image occlusion" in most places, but some references to "image cloze" still remain. For consistency's sake and to make it easier to quickly find IO-related code, this commit replaces all remaining references to "image cloze", only maintaining those required for backwards compatibility with existing note types. * Add cloze ordinal to shapes * Do not mutate original shapes during (de)normalization Mutating shapes would be a recipe for trouble when combined with IO API use by external consumers. (makeNormal(makeAbsolute(makeNormal())) is not idempotent, and keeping track of the original state would introduce additional complexity with no discernible performance benefit or otherwise.) * Tweak IO API, allowing modifications to ShapeProperties * Tweak drawShape parameters * Switch method order For consistency with previous implementation * Run Rust formatters * Simplify position (de)normalization --------- Co-authored-by: Glutanimate <glutanimate@users.noreply.github.com>
58 lines
1.5 KiB
TypeScript
58 lines
1.5 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 "./floats";
|
|
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;
|
|
}
|
|
|
|
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;
|
|
}
|