webcad-api/types/Add-on/Rotate.d.ts

10 lines
471 B
TypeScript
Raw Normal View History

2020-09-24 11:04:12 +08:00
import { Vector3 } from 'three';
import { Entity } from '../DatabaseServices/Entity/Entity';
import { Command } from '../Editor/CommandMachine';
2020-10-15 10:22:20 +08:00
import { UpdateEntityDrawTask } from './UpdateEntityDrawTask';
2020-09-24 11:04:12 +08:00
export declare class Command_Rotate implements Command {
exec(): Promise<void>;
2020-10-15 10:22:20 +08:00
UpdateTask: UpdateEntityDrawTask;
Update(basePt: Vector3, an: number, ens: Entity[], isCopy?: boolean, resetUpdate?: boolean): void;
2020-09-24 11:04:12 +08:00
}
//# sourceMappingURL=Rotate.d.ts.map