webcad-api/types/Add-on/StretchMove.d.ts
2024-12-20 16:36:31 +08:00

9 lines
380 B
TypeScript

import { Matrix4, Vector3 } from "three";
import { StretchData } from "../Common/StretchParse";
import { Command } from "../Editor/CommandMachine";
export declare class Command_StretchMove implements Command {
boxAdd: number;
exec(): Promise<void>;
Stretch(d: StretchData, stretchVector: Vector3, moveMatrix: Matrix4): void;
}
//# sourceMappingURL=StretchMove.d.ts.map