1234567891011121314 |
- import { SPoint } from "@persagy-web/draw/lib";
- import { SGraphCommand, SGraphItem, SGraphScene } from "../index";
- export declare class SGraphPointListUpdate extends SGraphCommand {
- readonly command: string;
- item: SGraphItem;
- old: SPoint;
- pos: SPoint;
- index: number;
- pointList: SPoint[];
- constructor(scene: SGraphScene, item: SGraphItem, pointList: SPoint[], old: SPoint, pos: SPoint, index: number);
- redo(): void;
- undo(): void;
- toString(): string;
- }
|