10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
|
import { Vector3 } from 'three';
|
||
|
import { Command } from '../Editor/CommandMachine';
|
||
|
export declare class DrawCircle implements Command {
|
||
|
exec(): Promise<void>;
|
||
|
DrawCircleUseRadious(val: Vector3): Promise<void>;
|
||
|
DrawCicleUseTwoPoint(): Promise<void>;
|
||
|
DrawCicleUseThreePoint(): Promise<void>;
|
||
|
DrawCicleUseCutoffPointAndRadious(): Promise<void>;
|
||
|
}
|
||
|
//# sourceMappingURL=DrawCircle.d.ts.map
|