remove deprecated mutable drawing functions: scale, setXY

This commit is contained in:
Tom Hunkapiller
2021-05-24 09:25:52 +03:00
parent 56eecef1a8
commit a56119e7cd
12 changed files with 12 additions and 53 deletions

View File

@ -15,11 +15,4 @@ export class Extent extends XmlComponent {
this.root.push(this.attributes);
}
public setXY(x: number, y: number): void {
this.attributes.set({
cx: x,
cy: y,
});
}
}