0.0.1
This commit is contained in:
commit
b654ca8c7f
10
package.json
Normal file
10
package.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "webcad-api",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"main": "webcad-api.js",
|
||||
"types": "types/api.d.ts",
|
||||
"private": true,
|
||||
"author": "cx",
|
||||
"license": "ISC"
|
||||
}
|
5
types/Add-on/ActivityLayerBoard.d.ts
vendored
Normal file
5
types/Add-on/ActivityLayerBoard.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class ActicityLayerBoard implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=ActivityLayerBoard.d.ts.map
|
1
types/Add-on/ActivityLayerBoard.d.ts.map
Normal file
1
types/Add-on/ActivityLayerBoard.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ActivityLayerBoard.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/ActivityLayerBoard.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AASnD,qBAAa,kBAAmB,YAAW,OAAO;IAExC,IAAI;CA2Eb"}
|
19
types/Add-on/AddPtOnBoard.d.ts
vendored
Normal file
19
types/Add-on/AddPtOnBoard.d.ts
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
import { PromptPointResult } from "../Editor/PromptResult";
|
||||
import { Board } from "../DatabaseServices/Entity/Board";
|
||||
import { Polyline } from "../DatabaseServices/Entity/Polyline";
|
||||
declare abstract class PtOnBoard implements Command {
|
||||
prompt: string;
|
||||
exec(): Promise<void>;
|
||||
abstract operation(br: Board, ptRes: PromptPointResult): Polyline;
|
||||
}
|
||||
export declare class AddPtOnBoard extends PtOnBoard {
|
||||
prompt: string;
|
||||
operation(br: Board, ptRes: PromptPointResult): Polyline;
|
||||
}
|
||||
export declare class DeletePtOnBoard extends PtOnBoard {
|
||||
prompt: string;
|
||||
operation(br: Board, ptRes: PromptPointResult): Polyline;
|
||||
}
|
||||
export {};
|
||||
//# sourceMappingURL=AddPtOnBoard.d.ts.map
|
1
types/Add-on/AddPtOnBoard.d.ts.map
Normal file
1
types/Add-on/AddPtOnBoard.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"AddPtOnBoard.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/AddPtOnBoard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEnD,OAAO,EAAgB,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AAG/D,uBAAe,SAAU,YAAW,OAAO;IAEvC,MAAM,EAAE,MAAM,CAAC;IACT,IAAI;IAkCV,QAAQ,CAAC,SAAS,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB,GAAG,QAAQ;CACpE;AAED,qBAAa,YAAa,SAAQ,SAAS;IAEvC,MAAM,SAAQ;IAEd,SAAS,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB;CAqBhD;AAED,qBAAa,eAAgB,SAAQ,SAAS;IAE1C,MAAM,SAAQ;IAEd,SAAS,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB;CAgChD"}
|
6
types/Add-on/Align.d.ts
vendored
Normal file
6
types/Add-on/Align.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Align implements Command {
|
||||
exec(): Promise<void>;
|
||||
private getPoint;
|
||||
}
|
||||
//# sourceMappingURL=Align.d.ts.map
|
1
types/Add-on/Align.d.ts.map
Normal file
1
types/Add-on/Align.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Align.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Align.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAMnD,qBAAa,KAAM,YAAW,OAAO;IAE3B,IAAI;YAyFI,QAAQ;CAWzB"}
|
50
types/Add-on/Array.d.ts
vendored
Normal file
50
types/Add-on/Array.d.ts
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
import { Singleton } from '../Common/Singleton';
|
||||
import { Command } from '../Editor/CommandMachine';
|
||||
import { IBaseOption, IUiOption } from '../UI/Store/BoardInterface';
|
||||
export declare enum ArrayType {
|
||||
Rectangle = "R",
|
||||
Circle = "C"
|
||||
}
|
||||
export declare enum CirArrMethod {
|
||||
itemsAndAngle = 0,
|
||||
itemsAndBeAngle = 1,
|
||||
fillAngleAndBeAngle = 2
|
||||
}
|
||||
export declare enum Pick {
|
||||
centerPoint = 0,
|
||||
rowOffset = 2,
|
||||
colOffset = 3,
|
||||
rowAndColOffset = 7,
|
||||
arrayAngle = 4,
|
||||
fillAngle = 5,
|
||||
betweenAngle = 6
|
||||
}
|
||||
export interface ArrayOptioins extends IBaseOption {
|
||||
row: number;
|
||||
col: number;
|
||||
type: ArrayType;
|
||||
rowOffset: number;
|
||||
colOffset: number;
|
||||
arrayAngle: number;
|
||||
x: number;
|
||||
y: number;
|
||||
itemTotal: number;
|
||||
fillAngle: number;
|
||||
betweenAngle: number;
|
||||
method: CirArrMethod;
|
||||
isCorrect: boolean;
|
||||
}
|
||||
export declare class ArrayStore extends Singleton {
|
||||
protected m_UiOption: IUiOption<ArrayOptioins>;
|
||||
m_Option: ArrayOptioins;
|
||||
get UIOption(): IUiOption<ArrayOptioins>;
|
||||
HasInvailValue(): "" | "存在无效数值,请修正" | "项目间的角度不能超过填充角度" | "项目总数不能为1";
|
||||
Cancel(): void;
|
||||
OnOk(): void;
|
||||
_Return(state: number): void;
|
||||
}
|
||||
export declare class Command_Array implements Command {
|
||||
arrayStore: any;
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Array.d.ts.map
|
1
types/Add-on/Array.d.ts.map
Normal file
1
types/Add-on/Array.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Array.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Array.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAGhD,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAQnD,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAGpE,oBAAY,SAAS;IAEjB,SAAS,MAAM;IACf,MAAM,MAAM;CACf;AAED,oBAAY,YAAY;IAEpB,aAAa,IAAI;IACjB,eAAe,IAAI;IACnB,mBAAmB,IAAI;CAC1B;AACD,oBAAY,IAAI;IAEZ,WAAW,IAAI;IACf,SAAS,IAAI;IACb,SAAS,IAAI;IACb,eAAe,IAAI;IACnB,UAAU,IAAI;IACd,SAAS,IAAI;IACb,YAAY,IAAI;CACnB;AACD,MAAM,WAAW,aAAc,SAAQ,WAAW;IAE9C,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,SAAS,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,YAAY,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;CACtB;AACD,qBAAa,UAAW,SAAQ,SAAS;IAErC,SAAS,CAAC,UAAU,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IACnC,QAAQ,EAAE,aAAa,CAgBjC;IACF,IAAI,QAAQ,6BAKX;IACD,cAAc;IAYd,MAAM;IAIN,IAAI;IAIJ,OAAO,CAAC,KAAK,EAAE,MAAM;CAKxB;AACD,qBAAa,aAAc,YAAW,OAAO;IAEzC,UAAU,MAA4B;IAEhC,IAAI;CA2Ob"}
|
5
types/Add-on/AutoHoleFaceSetting.d.ts
vendored
Normal file
5
types/Add-on/AutoHoleFaceSetting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class AutoHoleFaceSetting implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=AutoHoleFaceSetting.d.ts.map
|
1
types/Add-on/AutoHoleFaceSetting.d.ts.map
Normal file
1
types/Add-on/AutoHoleFaceSetting.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"AutoHoleFaceSetting.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/AutoHoleFaceSetting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAOnD,qBAAa,mBAAoB,YAAW,OAAO;IAEzC,IAAI;CA2Bb"}
|
5
types/Add-on/Batch/BatchModifySealOrDrill.d.ts
vendored
Normal file
5
types/Add-on/Batch/BatchModifySealOrDrill.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../../Editor/CommandMachine";
|
||||
export declare class BatchModify implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=BatchModifySealOrDrill.d.ts.map
|
1
types/Add-on/Batch/BatchModifySealOrDrill.d.ts.map
Normal file
1
types/Add-on/Batch/BatchModifySealOrDrill.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BatchModifySealOrDrill.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/Batch/BatchModifySealOrDrill.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAOtD,qBAAa,WAAY,YAAW,OAAO;IAEjC,IAAI;CAuCb"}
|
5
types/Add-on/BoardBatchCurtail.d.ts
vendored
Normal file
5
types/Add-on/BoardBatchCurtail.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class BoardBatchCurtail implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=BoardBatchCurtail.d.ts.map
|
1
types/Add-on/BoardBatchCurtail.d.ts.map
Normal file
1
types/Add-on/BoardBatchCurtail.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BoardBatchCurtail.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardBatchCurtail.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AA0BnD,qBAAa,iBAAkB,YAAW,OAAO;IAEvC,IAAI;CAqJb"}
|
10
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts
vendored
Normal file
10
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
export declare class AutoCuttingReactor {
|
||||
constructor();
|
||||
StartReactor(ents: Board[]): void;
|
||||
}
|
||||
/**
|
||||
* 对绘制出来的板件自动切割其周围的板件
|
||||
*/
|
||||
export declare function AutoCutting(isRelevance: boolean): void;
|
||||
//# sourceMappingURL=AutoCuttingReactor.d.ts.map
|
1
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts.map
Normal file
1
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"AutoCuttingReactor.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/AutoCuttingReactor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAK5D,qBAAa,kBAAkB;;IAwB3B,YAAY,CAAC,IAAI,EAAE,KAAK,EAAE;CAW7B;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,WAAW,EAAE,OAAO,QAU/C"}
|
3
types/Add-on/BoardCutting/CuttingUtils.d.ts
vendored
Normal file
3
types/Add-on/BoardCutting/CuttingUtils.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import { ExtrudeSolid } from "../../DatabaseServices/Entity/Extrude";
|
||||
export declare function CuttingBoard(orgBoard: ExtrudeSolid, knifBoards: ExtrudeSolid[]): ExtrudeSolid[];
|
||||
//# sourceMappingURL=CuttingUtils.d.ts.map
|
1
types/Add-on/BoardCutting/CuttingUtils.d.ts.map
Normal file
1
types/Add-on/BoardCutting/CuttingUtils.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CuttingUtils.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/CuttingUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAErE,wBAAgB,YAAY,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,GAAG,YAAY,EAAE,CAK/F"}
|
5
types/Add-on/BoardCutting/CuttingUtils2.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/CuttingUtils2.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { HardwareCompositeEntity } from "../../DatabaseServices/Hardware/HardwareCompositeEntity";
|
||||
export declare function CuttingBoardByBoard(meats: Board[], knifs: Board[], isRelevance?: boolean): void;
|
||||
export declare function CuttingBoardByHardware(meats: Board[], hardwares: HardwareCompositeEntity[]): void;
|
||||
//# sourceMappingURL=CuttingUtils2.d.ts.map
|
1
types/Add-on/BoardCutting/CuttingUtils2.d.ts.map
Normal file
1
types/Add-on/BoardCutting/CuttingUtils2.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CuttingUtils2.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/CuttingUtils2.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAE5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,yDAAyD,CAAC;AAElG,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,WAAW,UAAO,QAsCrF;AAED,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,uBAAuB,EAAE,QA8C1F"}
|
5
types/Add-on/BoardCutting/DeleteRelevance.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/DeleteRelevance.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../../Editor/CommandMachine";
|
||||
export declare class DeleteRelevance implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=DeleteRelevance.d.ts.map
|
1
types/Add-on/BoardCutting/DeleteRelevance.d.ts.map
Normal file
1
types/Add-on/BoardCutting/DeleteRelevance.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"DeleteRelevance.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/DeleteRelevance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAKtD,qBAAa,eAAgB,YAAW,OAAO;IAErC,IAAI;CA8Cb"}
|
8
types/Add-on/BoardCutting/HardwareCuttingReactor.d.ts
vendored
Normal file
8
types/Add-on/BoardCutting/HardwareCuttingReactor.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { HardwareCompositeEntity } from "../../DatabaseServices/Hardware/HardwareCompositeEntity";
|
||||
export declare class HardwareCuttingReactor {
|
||||
EnableHardware: boolean;
|
||||
constructor();
|
||||
StartReactor(hardwares: HardwareCompositeEntity[], ents: Board[]): void;
|
||||
}
|
||||
//# sourceMappingURL=HardwareCuttingReactor.d.ts.map
|
@ -0,0 +1 @@
|
||||
{"version":3,"file":"HardwareCuttingReactor.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/HardwareCuttingReactor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,yDAAyD,CAAC;AAIlG,qBAAa,sBAAsB;IAE/B,cAAc,UAAQ;;IA2BtB,YAAY,CAAC,SAAS,EAAE,uBAAuB,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;CAUnE"}
|
5
types/Add-on/BoardCutting/LinearCutting.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/LinearCutting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../../Editor/CommandMachine";
|
||||
export declare class LinearCutting implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=LinearCutting.d.ts.map
|
1
types/Add-on/BoardCutting/LinearCutting.d.ts.map
Normal file
1
types/Add-on/BoardCutting/LinearCutting.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"LinearCutting.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/LinearCutting.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAStD,qBAAa,aAAc,YAAW,OAAO;IAEnC,IAAI;CAoLb"}
|
5
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../../Editor/CommandMachine";
|
||||
export declare class NonAssociativeCutting implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=NonAssociativeCutting.d.ts.map
|
1
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts.map
Normal file
1
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"NonAssociativeCutting.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/NonAssociativeCutting.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAQtD,qBAAa,qBAAsB,YAAW,OAAO;IAE3C,IAAI;CAgGb"}
|
5
types/Add-on/BoardCutting/ReferenceCutting.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/ReferenceCutting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../../Editor/CommandMachine";
|
||||
export declare class ReferenceCutting implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=ReferenceCutting.d.ts.map
|
1
types/Add-on/BoardCutting/ReferenceCutting.d.ts.map
Normal file
1
types/Add-on/BoardCutting/ReferenceCutting.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ReferenceCutting.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/ReferenceCutting.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAQtD,qBAAa,gBAAiB,YAAW,OAAO;IAEtC,IAAI;CAyJb"}
|
36
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts
vendored
Normal file
36
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
import React = require("react");
|
||||
import { Singleton } from "../../Common/Singleton";
|
||||
import { IBaseOption, BoardType } from "../../UI/Store/BoardInterface";
|
||||
export declare enum CuttingOffset {
|
||||
Front = "front",
|
||||
Middle = "middle",
|
||||
Back = "back"
|
||||
}
|
||||
export interface ReferenceCuttingOptioins extends IBaseOption {
|
||||
boardType: BoardType;
|
||||
offset: number;
|
||||
halfThickness: number;
|
||||
CuttingPosSelected: CuttingOffset;
|
||||
}
|
||||
export declare class ReferenceCuttingStore extends Singleton {
|
||||
protected m_UiOption: any;
|
||||
m_Option: ReferenceCuttingOptioins;
|
||||
get UIOption(): import("../../UI/Store/BoardInterface").IUiOption<ReferenceCuttingOptioins>;
|
||||
Cancel(): void;
|
||||
OnOk(): void;
|
||||
_Return(state: number): void;
|
||||
HasInvailValue(): boolean;
|
||||
}
|
||||
export declare class ReferenceCuttingModal extends React.Component<{
|
||||
store: ReferenceCuttingStore;
|
||||
}, {}> {
|
||||
private uiOption;
|
||||
private handleChangeOffsetDir;
|
||||
private getOffsetKeyWord;
|
||||
private event;
|
||||
registerEvent(): void;
|
||||
UNSAFE_componentWillMount(): void;
|
||||
componentWillUnmount(): void;
|
||||
render(): JSX.Element;
|
||||
}
|
||||
//# sourceMappingURL=ReferenceCuttingModal.d.ts.map
|
1
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts.map
Normal file
1
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ReferenceCuttingModal.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardCutting/ReferenceCuttingModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,QAAQ,OAAO,CAAC,CAAC;AAUhC,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAGnD,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAEvE,oBAAY,aAAa;IAErB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,IAAI,SAAS;CAChB;AAMD,MAAM,WAAW,wBAAyB,SAAQ,WAAW;IAEzD,SAAS,EAAE,SAAS,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,aAAa,CAAC;CACrC;AACD,qBAAa,qBAAsB,SAAQ,SAAS;IAEhD,SAAS,CAAC,UAAU,MAAC;IACT,QAAQ,EAAE,wBAAwB,CAK5C;IACF,IAAI,QAAQ,gFAGX;IACD,MAAM;IAIN,IAAI;IAIJ,OAAO,CAAC,KAAK,EAAE,MAAM;IAKrB,cAAc;CAIjB;AAED,qBAEa,qBAAsB,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,KAAK,EAAE,qBAAqB,CAAC;CAAE,EAAE,EAAE,CAAC;IAC7F,OAAO,CAAC,QAAQ,CAAC;IACjB,OAAO,CAAC,qBAAqB,CAc3B;IACF,OAAO,CAAC,gBAAgB,CAWtB;IACF,OAAO,CAAC,KAAK,CAAW;IACxB,aAAa;IAsBb,yBAAyB;IAKzB,oBAAoB;IAKpB,MAAM;CAmET"}
|
7
types/Add-on/BoardEditor/Board2Regions.d.ts
vendored
Normal file
7
types/Add-on/BoardEditor/Board2Regions.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { Region } from "../../DatabaseServices/Entity/Region";
|
||||
/**
|
||||
* 把板件炸开成面域,0,1为正反面,其余的为边面(没有圆弧面)
|
||||
*/
|
||||
export declare function Board2Regions(br: Board): Region[];
|
||||
//# sourceMappingURL=Board2Regions.d.ts.map
|
1
types/Add-on/BoardEditor/Board2Regions.d.ts.map
Normal file
1
types/Add-on/BoardEditor/Board2Regions.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Board2Regions.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardEditor/Board2Regions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAI5D,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAE9D;;GAEG;AACH,wBAAgB,aAAa,CAAC,EAAE,EAAE,KAAK,GAAG,MAAM,EAAE,CAwCjD"}
|
6
types/Add-on/BoardEditor/SerializeBoardData.d.ts
vendored
Normal file
6
types/Add-on/BoardEditor/SerializeBoardData.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
import { BoardProcessOption } from "../../UI/Store/BoardInterface";
|
||||
import { CADFiler } from "../../DatabaseServices/CADFiler";
|
||||
/**序列化板件数据 */
|
||||
export declare function serializeBoardData(file: CADFiler, processData: BoardProcessOption): void;
|
||||
export declare function deserializationBoardData(file: CADFiler, processData: BoardProcessOption, ver: number): void;
|
||||
//# sourceMappingURL=SerializeBoardData.d.ts.map
|
1
types/Add-on/BoardEditor/SerializeBoardData.d.ts.map
Normal file
1
types/Add-on/BoardEditor/SerializeBoardData.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"SerializeBoardData.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardEditor/SerializeBoardData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAEnE,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAE3D,aAAa;AACb,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,QAoCjF;AAGD,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE,GAAG,EAAE,MAAM,QAkDpG"}
|
8
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts
vendored
Normal file
8
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { Command } from "../../Editor/CommandMachine";
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { IUpdateBoardInfosOption } from "../../UI/Components/Board/UpdateBoardInfointerface";
|
||||
export declare class UpdateBoardInfos implements Command {
|
||||
exec(): Promise<void>;
|
||||
static ModifyBr(br: Board, option: IUpdateBoardInfosOption): void;
|
||||
}
|
||||
//# sourceMappingURL=UpdateBoardInfos.d.ts.map
|
1
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts.map
Normal file
1
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"UpdateBoardInfos.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/BoardEditor/UpdateBoardInfos.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAItD,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAE5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAM7F,qBAAa,gBAAiB,YAAW,OAAO;IAEtC,IAAI;IAmCV,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,uBAAuB;CA4G7D"}
|
19
types/Add-on/BoardFindModify.d.ts
vendored
Normal file
19
types/Add-on/BoardFindModify.d.ts
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class BoardFindModify implements Command {
|
||||
exec(): Promise<void>;
|
||||
private GetBoards;
|
||||
private PutSelectList;
|
||||
private FindBrs;
|
||||
private FilterBr;
|
||||
private FilterBrSize;
|
||||
private CompareIsEqual;
|
||||
private ModifyBrs;
|
||||
private ModifyBr;
|
||||
private FindMaxSizeBrs;
|
||||
private FindHaveSpiteSize;
|
||||
private GetBoardOption;
|
||||
private RemoveBoardModelingOrSpecialShape;
|
||||
private ModifyHardware;
|
||||
private FilterHardware;
|
||||
}
|
||||
//# sourceMappingURL=BoardFindModify.d.ts.map
|
1
types/Add-on/BoardFindModify.d.ts.map
Normal file
1
types/Add-on/BoardFindModify.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BoardFindModify.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardFindModify.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAYnD,qBAAa,eAAgB,YAAW,OAAO;IAErC,IAAI;YAkCI,SAAS;IAYvB,OAAO,CAAC,aAAa;YAQP,OAAO;IA4CrB,OAAO,CAAC,QAAQ;IAqIhB,OAAO,CAAC,YAAY;IAgBpB,OAAO,CAAC,cAAc;YAOR,SAAS;IAYvB,OAAO,CAAC,QAAQ;YAsHF,cAAc;YAoBd,iBAAiB;YASjB,cAAc;YAiDd,iCAAiC;YAkBjC,cAAc;IA2B5B,OAAO,CAAC,cAAc;CAqCzB"}
|
10
types/Add-on/BoolOperation.d.ts
vendored
Normal file
10
types/Add-on/BoolOperation.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
export declare class IntersectionOperation {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
export declare class UnionOperation extends IntersectionOperation {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
export declare class SubsractOperation {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=BoolOperation.d.ts.map
|
1
types/Add-on/BoolOperation.d.ts.map
Normal file
1
types/Add-on/BoolOperation.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BoolOperation.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoolOperation.ts"],"names":[],"mappings":"AAgCA,qBAAa,qBAAqB;IAExB,IAAI;CAKb;AACD,qBAAa,cAAe,SAAQ,qBAAqB;IAE/C,IAAI;CAKb;AACD,qBAAa,iBAAiB;IAEpB,IAAI;CAeb"}
|
5
types/Add-on/Break.d.ts
vendored
Normal file
5
types/Add-on/Break.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_Break implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Break.d.ts.map
|
1
types/Add-on/Break.d.ts.map
Normal file
1
types/Add-on/Break.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Break.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Break.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEnD,qBAAa,aAAc,YAAW,OAAO;IAEnC,IAAI;CA4Fb"}
|
5
types/Add-on/BuyMaterial.d.ts
vendored
Normal file
5
types/Add-on/BuyMaterial.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class BuyMaterial implements Command {
|
||||
exec(): void;
|
||||
}
|
||||
//# sourceMappingURL=BuyMaterial.d.ts.map
|
1
types/Add-on/BuyMaterial.d.ts.map
Normal file
1
types/Add-on/BuyMaterial.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BuyMaterial.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BuyMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBAAa,WAAY,YAAW,OAAO;IAEvC,IAAI;CAIP"}
|
7
types/Add-on/ChangeColor.d.ts
vendored
Normal file
7
types/Add-on/ChangeColor.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class ChangeColor implements Command {
|
||||
private color;
|
||||
constructor(color: number);
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=ChangeColor.d.ts.map
|
1
types/Add-on/ChangeColor.d.ts.map
Normal file
1
types/Add-on/ChangeColor.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ChangeColor.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/ChangeColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBAAa,WAAY,YAAW,OAAO;IAE3B,OAAO,CAAC,KAAK;gBAAL,KAAK,EAAE,MAAM;IAI3B,IAAI;CAYb"}
|
5
types/Add-on/ChangeColorByBoardMaterial.d.ts
vendored
Normal file
5
types/Add-on/ChangeColorByBoardMaterial.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class ChangeColorByMaterial implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=ChangeColorByBoardMaterial.d.ts.map
|
1
types/Add-on/ChangeColorByBoardMaterial.d.ts.map
Normal file
1
types/Add-on/ChangeColorByBoardMaterial.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ChangeColorByBoardMaterial.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/ChangeColorByBoardMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAMnD,qBAAa,qBAAsB,YAAW,OAAO;IAE3C,IAAI;CA2Bb"}
|
6
types/Add-on/CheckHoles.d.ts
vendored
Normal file
6
types/Add-on/CheckHoles.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class CheckHoles implements Command {
|
||||
exec(): Promise<void>;
|
||||
private IsCollsion;
|
||||
}
|
||||
//# sourceMappingURL=CheckHoles.d.ts.map
|
1
types/Add-on/CheckHoles.d.ts.map
Normal file
1
types/Add-on/CheckHoles.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CheckHoles.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CheckHoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAcnD,qBAAa,UAAW,YAAW,OAAO;IAEhC,IAAI;IA+FV,OAAO,CAAC,UAAU;CAcrB"}
|
7
types/Add-on/CheckModeling.d.ts
vendored
Normal file
7
types/Add-on/CheckModeling.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class CheckModeling implements Command {
|
||||
res: Function;
|
||||
exec(): Promise<void>;
|
||||
Wait(): Promise<unknown>;
|
||||
}
|
||||
//# sourceMappingURL=CheckModeling.d.ts.map
|
1
types/Add-on/CheckModeling.d.ts.map
Normal file
1
types/Add-on/CheckModeling.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CheckModeling.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CheckModeling.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAQnD,qBAAa,aAAc,YAAW,OAAO;IAEzC,GAAG,EAAE,QAAQ,CAAC;IACR,IAAI;IAqEV,IAAI;CAIP"}
|
20
types/Add-on/CombinatAttributeBrush.d.ts
vendored
Normal file
20
types/Add-on/CombinatAttributeBrush.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
import * as React from 'react';
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
interface IBrushOption {
|
||||
all: boolean;
|
||||
roomName: boolean;
|
||||
cabName: boolean;
|
||||
name: boolean;
|
||||
}
|
||||
export declare class CombinatAttributeBrush implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
export declare class BrushModal extends React.Component<{
|
||||
option: IBrushOption;
|
||||
}> {
|
||||
render(): JSX.Element;
|
||||
private ok;
|
||||
private cancel;
|
||||
}
|
||||
export {};
|
||||
//# sourceMappingURL=CombinatAttributeBrush.d.ts.map
|
1
types/Add-on/CombinatAttributeBrush.d.ts.map
Normal file
1
types/Add-on/CombinatAttributeBrush.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CombinatAttributeBrush.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CombinatAttributeBrush.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAenD,UAAU,YAAY;IAElB,GAAG,EAAE,OAAO,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;CACjB;AAED,qBAAa,sBAAuB,YAAW,OAAO;IAE5C,IAAI;CA8Eb;AASD,qBACa,UAAW,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,MAAM,EAAE,YAAY,CAAC;CAAE,CAAC;IAC/D,MAAM;IA2Bb,OAAO,CAAC,EAAE,CAKR;IACF,OAAO,CAAC,MAAM,CAGZ;CACL"}
|
5
types/Add-on/CommandFeeding.d.ts
vendored
Normal file
5
types/Add-on/CommandFeeding.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class FeedingCommand implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=CommandFeeding.d.ts.map
|
1
types/Add-on/CommandFeeding.d.ts.map
Normal file
1
types/Add-on/CommandFeeding.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CommandFeeding.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CommandFeeding.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,cAAe,YAAW,OAAO;IAEpC,IAAI;CAkDb"}
|
5
types/Add-on/Command_CombineEntity.d.ts
vendored
Normal file
5
types/Add-on/Command_CombineEntity.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_CombineEntity implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Command_CombineEntity.d.ts.map
|
1
types/Add-on/Command_CombineEntity.d.ts.map
Normal file
1
types/Add-on/Command_CombineEntity.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Command_CombineEntity.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Command_CombineEntity.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBAAa,qBAAsB,YAAW,OAAO;IAE3C,IAAI;CAgBb"}
|
5
types/Add-on/Command_CommandPanel.d.ts
vendored
Normal file
5
types/Add-on/Command_CommandPanel.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_CommandPanel implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Command_CommandPanel.d.ts.map
|
1
types/Add-on/Command_CommandPanel.d.ts.map
Normal file
1
types/Add-on/Command_CommandPanel.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Command_CommandPanel.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Command_CommandPanel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,oBAAqB,YAAW,OAAO;IAE1C,IAAI;CAKb"}
|
5
types/Add-on/Command_ExportObj.d.ts
vendored
Normal file
5
types/Add-on/Command_ExportObj.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from './../Editor/CommandMachine';
|
||||
export declare class Command_ExportObj implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Command_ExportObj.d.ts.map
|
1
types/Add-on/Command_ExportObj.d.ts.map
Normal file
1
types/Add-on/Command_ExportObj.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Command_ExportObj.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Command_ExportObj.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAIrD,qBAAa,iBAAkB,YAAW,OAAO;IAEvC,IAAI;CAUb"}
|
5
types/Add-on/Command_Option.d.ts
vendored
Normal file
5
types/Add-on/Command_Option.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_Options implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Command_Option.d.ts.map
|
1
types/Add-on/Command_Option.d.ts.map
Normal file
1
types/Add-on/Command_Option.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Command_Option.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Command_Option.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,eAAgB,YAAW,OAAO;IAErC,IAAI;CAKb"}
|
5
types/Add-on/Command_SetBRXAxis.d.ts
vendored
Normal file
5
types/Add-on/Command_SetBRXAxis.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_SetBRXAxis implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Command_SetBRXAxis.d.ts.map
|
1
types/Add-on/Command_SetBRXAxis.d.ts.map
Normal file
1
types/Add-on/Command_SetBRXAxis.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Command_SetBRXAxis.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Command_SetBRXAxis.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBACa,kBAAmB,YAAW,OAAO;IAExC,IAAI;CA2Bb"}
|
5
types/Add-on/Conver2Polyline.d.ts
vendored
Normal file
5
types/Add-on/Conver2Polyline.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_Conver2Polyline implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Conver2Polyline.d.ts.map
|
1
types/Add-on/Conver2Polyline.d.ts.map
Normal file
1
types/Add-on/Conver2Polyline.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Conver2Polyline.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Conver2Polyline.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,uBAAwB,YAAW,OAAO;IAE7C,IAAI;CAcb"}
|
5
types/Add-on/Copy.d.ts
vendored
Normal file
5
types/Add-on/Copy.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from '../Editor/CommandMachine';
|
||||
export declare class Command_Copy implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Copy.d.ts.map
|
1
types/Add-on/Copy.d.ts.map
Normal file
1
types/Add-on/Copy.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Copy.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Copy.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAOnD,qBAAa,YAAa,YAAW,OAAO;IAElC,IAAI;CAkHb"}
|
6
types/Add-on/CopyClip.d.ts
vendored
Normal file
6
types/Add-on/CopyClip.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
export declare class CopyClip {
|
||||
private _GetPoint;
|
||||
constructor(_GetPoint?: boolean);
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=CopyClip.d.ts.map
|
1
types/Add-on/CopyClip.d.ts.map
Normal file
1
types/Add-on/CopyClip.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CopyClip.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CopyClip.ts"],"names":[],"mappings":"AASA,qBAAa,QAAQ;IAEL,OAAO,CAAC,SAAS;gBAAT,SAAS,GAAE,OAAe;IACxC,IAAI;CAwCb"}
|
4
types/Add-on/CopyPoint.d.ts
vendored
Normal file
4
types/Add-on/CopyPoint.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
export declare class Command_CopyPoint {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=CopyPoint.d.ts.map
|
1
types/Add-on/CopyPoint.d.ts.map
Normal file
1
types/Add-on/CopyPoint.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CopyPoint.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CopyPoint.ts"],"names":[],"mappings":"AAIA,qBAAa,iBAAiB;IAEpB,IAAI;CAOb"}
|
6
types/Add-on/CostumUCS.d.ts
vendored
Normal file
6
types/Add-on/CostumUCS.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class CustomUcs implements Command {
|
||||
exec(): Promise<void>;
|
||||
private UpdateUCS;
|
||||
}
|
||||
//# sourceMappingURL=CostumUCS.d.ts.map
|
1
types/Add-on/CostumUCS.d.ts.map
Normal file
1
types/Add-on/CostumUCS.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CostumUCS.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CostumUCS.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,SAAU,YAAW,OAAO;IAE/B,IAAI;IA2FV,OAAO,CAAC,SAAS;CAMpB"}
|
2
types/Add-on/CreateBoardFromData.d.ts
vendored
Normal file
2
types/Add-on/CreateBoardFromData.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
export declare function CreateBoardFromData(data: Object): Promise<void>;
|
||||
//# sourceMappingURL=CreateBoardFromData.d.ts.map
|
1
types/Add-on/CreateBoardFromData.d.ts.map
Normal file
1
types/Add-on/CreateBoardFromData.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"CreateBoardFromData.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/CreateBoardFromData.ts"],"names":[],"mappings":"AAMA,wBAAsB,mBAAmB,CAAC,IAAI,EAAE,MAAM,iBAqDrD"}
|
4
types/Add-on/DXFLoad.d.ts
vendored
Normal file
4
types/Add-on/DXFLoad.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
export declare class Command_DXFImport {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=DXFLoad.d.ts.map
|
1
types/Add-on/DXFLoad.d.ts.map
Normal file
1
types/Add-on/DXFLoad.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"DXFLoad.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/DXFLoad.ts"],"names":[],"mappings":"AAWA,qBAAa,iBAAiB;IAEpB,IAAI;CAyDb"}
|
5
types/Add-on/DeleteCurve.d.ts
vendored
Normal file
5
types/Add-on/DeleteCurve.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class DeleteCurve implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=DeleteCurve.d.ts.map
|
1
types/Add-on/DeleteCurve.d.ts.map
Normal file
1
types/Add-on/DeleteCurve.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"DeleteCurve.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/DeleteCurve.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,WAAY,YAAW,OAAO;IAEjC,IAAI;CAYb"}
|
5
types/Add-on/Dist.d.ts
vendored
Normal file
5
types/Add-on/Dist.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
export declare class Command_Dist implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Dist.d.ts.map
|
1
types/Add-on/Dist.d.ts.map
Normal file
1
types/Add-on/Dist.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Dist.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Dist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAWnD,qBAAa,YAAa,YAAW,OAAO;IAElC,IAAI;CAmCb"}
|
8
types/Add-on/Divide.d.ts
vendored
Normal file
8
types/Add-on/Divide.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { Command } from '../Editor/CommandMachine';
|
||||
import { PromptEntityResult } from '../Editor/PromptResult';
|
||||
export declare class CMD_Divide implements Command {
|
||||
exec(): Promise<void>;
|
||||
Divided(enRes: PromptEntityResult): Promise<void>;
|
||||
Measured(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=Divide.d.ts.map
|
1
types/Add-on/Divide.d.ts.map
Normal file
1
types/Add-on/Divide.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"Divide.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Divide.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAgB,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE1E,qBAAa,UAAW,YAAW,OAAO;IAEhC,IAAI;IAmCJ,OAAO,CAAC,KAAK,EAAE,kBAAkB;IA0BjC,QAAQ;CA4BjB"}
|
5
types/Add-on/DrawArc.d.ts
vendored
Normal file
5
types/Add-on/DrawArc.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Command } from '../Editor/CommandMachine';
|
||||
export declare class DrawArc implements Command {
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=DrawArc.d.ts.map
|
1
types/Add-on/DrawArc.d.ts.map
Normal file
1
types/Add-on/DrawArc.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"DrawArc.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/DrawArc.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,OAAQ,YAAW,OAAO;IAE7B,IAAI;CAoCb"}
|
17
types/Add-on/DrawBoard/ActivityLayerBoardTool.d.ts
vendored
Normal file
17
types/Add-on/DrawBoard/ActivityLayerBoardTool.d.ts
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { LayerNailOption, IShinkOption, INailRule } from "../../UI/Store/BoardInterface";
|
||||
declare class ActivityLayerBoardTool {
|
||||
NailRules: INailRule[];
|
||||
private GetBoardIntersection;
|
||||
private IntersectFace;
|
||||
private GetShrinkDist;
|
||||
private GetShrinkBoardIndexesMap;
|
||||
private GetRuleCount;
|
||||
private BuildNails;
|
||||
private RayPoint;
|
||||
Start(brs: Board[], nailOption: LayerNailOption, rules?: INailRule[], option?: IShinkOption): void;
|
||||
private AppendBoard;
|
||||
}
|
||||
export declare const activityLayerBoardTool: ActivityLayerBoardTool;
|
||||
export {};
|
||||
//# sourceMappingURL=ActivityLayerBoardTool.d.ts.map
|
1
types/Add-on/DrawBoard/ActivityLayerBoardTool.d.ts.map
Normal file
1
types/Add-on/DrawBoard/ActivityLayerBoardTool.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ActivityLayerBoardTool.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/DrawBoard/ActivityLayerBoardTool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAczF,cAAM,sBAAsB;IAExB,SAAS,EAAE,SAAS,EAAE,CAAC;IACvB,OAAO,CAAC,oBAAoB;IAe5B,OAAO,CAAC,aAAa;IAwCrB,OAAO,CAAC,aAAa;IAuBrB,OAAO,CAAC,wBAAwB;IAiBhC,OAAO,CAAC,YAAY;IAapB,OAAO,CAAC,UAAU;IA8ClB,OAAO,CAAC,QAAQ;IAMhB,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE,UAAU,EAAE,eAAe,EAAE,KAAK,GAAE,SAAS,EAAO,EAAE,MAAM,CAAC,EAAE,YAAY;IAmG/F,OAAO,CAAC,WAAW;CAiCtB;AAED,eAAO,MAAM,sBAAsB,wBAA+B,CAAC"}
|
10
types/Add-on/DrawBoard/BuildBoardTool.d.ts
vendored
Normal file
10
types/Add-on/DrawBoard/BuildBoardTool.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { TemplateRecord } from "../../DatabaseServices/Template/TemplateRecord";
|
||||
import { ISpaceParse } from "../../Geometry/SpaceParse/ISpaceParse";
|
||||
import { BehindBoardOption, IGrooveOption, LayerBoardOption, VerticalBoardOption } from "../../UI/Store/BoardInterface";
|
||||
export declare function BuildLayerBoards(opt: LayerBoardOption, space: ISpaceParse): Board[];
|
||||
export declare function BuildVerticalBoards(opt: VerticalBoardOption, space: ISpaceParse): Board[];
|
||||
export declare function BuildBehindBoards(opt: BehindBoardOption, space: ISpaceParse, grooveOption?: IGrooveOption): Board[];
|
||||
export declare function ExtendsBoardThickness(temp: TemplateRecord, thickness: number): void;
|
||||
export declare function FindLeftRightBoard(spaceParse: ISpaceParse, findEns: Board[]): void;
|
||||
//# sourceMappingURL=BuildBoardTool.d.ts.map
|
1
types/Add-on/DrawBoard/BuildBoardTool.d.ts.map
Normal file
1
types/Add-on/DrawBoard/BuildBoardTool.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BuildBoardTool.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/DrawBoard/BuildBoardTool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,gDAAgD,CAAC;AAEhF,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,iBAAiB,EAAsC,aAAa,EAAE,gBAAgB,EAAE,mBAAmB,EAAa,MAAM,+BAA+B,CAAC;AAGvK,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,gBAAgB,EAAE,KAAK,EAAE,WAAW,GAAG,KAAK,EAAE,CAsEnF;AAED,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,mBAAmB,EAAE,KAAK,EAAE,WAAW,GAAG,KAAK,EAAE,CAmEzF;AAED,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,iBAAiB,EAAE,KAAK,EAAE,WAAW,EAAE,YAAY,CAAC,EAAE,aAAa,GAAG,KAAK,EAAE,CAgFnH;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,QAY5E;AAED,wBAAgB,kBAAkB,CAAC,UAAU,EAAE,WAAW,EAAE,OAAO,EAAE,KAAK,EAAE,QA8B3E"}
|
22
types/Add-on/DrawBoard/BuildLayerNailTool.d.ts
vendored
Normal file
22
types/Add-on/DrawBoard/BuildLayerNailTool.d.ts
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { LayerBoardOption, LayerNailOption } from "../../UI/Store/BoardInterface";
|
||||
import { ISpaceParse } from "../../Geometry/SpaceParse/ISpaceParse";
|
||||
declare class BuildLayerNailsTool {
|
||||
private leftBoard;
|
||||
private rightBoard;
|
||||
private backBoard;
|
||||
private frontBoard;
|
||||
private option;
|
||||
private nailOption;
|
||||
private space;
|
||||
private InitTool;
|
||||
private InitBuildNails;
|
||||
private ParseHasLRBoard;
|
||||
/**分析前后背板 */
|
||||
private ParseFrontBackBoard;
|
||||
private GetNails;
|
||||
Start(brs: Board[], option: LayerBoardOption, nailOption: LayerNailOption, space: ISpaceParse): void;
|
||||
}
|
||||
export declare const buildLayerNailTool: BuildLayerNailsTool;
|
||||
export {};
|
||||
//# sourceMappingURL=BuildLayerNailTool.d.ts.map
|
1
types/Add-on/DrawBoard/BuildLayerNailTool.d.ts.map
Normal file
1
types/Add-on/DrawBoard/BuildLayerNailTool.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BuildLayerNailTool.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/DrawBoard/BuildLayerNailTool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAa,MAAM,+BAA+B,CAAC;AAK7F,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAkBpE,cAAM,mBAAmB;IAErB,OAAO,CAAC,SAAS,CAAQ;IACzB,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,SAAS,CAAQ;IACzB,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,MAAM,CAAmB;IACjC,OAAO,CAAC,UAAU,CAAkB;IACpC,OAAO,CAAC,KAAK,CAAc;IAC3B,OAAO,CAAC,QAAQ;IAOhB,OAAO,CAAC,cAAc;IA6DtB,OAAO,CAAC,eAAe;IA4CvB,YAAY;IACZ,OAAO,CAAC,mBAAmB;IAyC3B,OAAO,CAAC,QAAQ;IA+EhB,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE,MAAM,EAAE,gBAAgB,EAAE,UAAU,EAAE,eAAe,EAAE,KAAK,EAAE,WAAW;CAgFhG;AAED,eAAO,MAAM,kBAAkB,qBAA4B,CAAC"}
|
5
types/Add-on/DrawBoard/BuildTopBottomBoardTool.d.ts
vendored
Normal file
5
types/Add-on/DrawBoard/BuildTopBottomBoardTool.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||
import { ISpaceParse } from "../../Geometry/SpaceParse/ISpaceParse";
|
||||
import { TBBoardOption } from "../../UI/Store/BoardInterface";
|
||||
export declare function BuildTopBottomBoards(topOpt: TBBoardOption, bottomOpt: TBBoardOption, space: ISpaceParse): Board[];
|
||||
//# sourceMappingURL=BuildTopBottomBoardTool.d.ts.map
|
1
types/Add-on/DrawBoard/BuildTopBottomBoardTool.d.ts.map
Normal file
1
types/Add-on/DrawBoard/BuildTopBottomBoardTool.d.ts.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"BuildTopBottomBoardTool.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/DrawBoard/BuildTopBottomBoardTool.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAE5D,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,aAAa,EAAa,MAAM,+BAA+B,CAAC;AAEzE,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,aAAa,EAAE,KAAK,EAAE,WAAW,GAAG,KAAK,EAAE,CAsCjH"}
|
7
types/Add-on/DrawBoard/DrawBehindBoard.d.ts
vendored
Normal file
7
types/Add-on/DrawBoard/DrawBehindBoard.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import { BoardType } from '../../UI/Store/BoardInterface';
|
||||
import { DrawBoardTool } from './DrawBoardTool';
|
||||
export declare class DrawBehindBoard extends DrawBoardTool {
|
||||
protected drawType: BoardType;
|
||||
protected buildBoard(isAppendSpace?: boolean): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=DrawBehindBoard.d.ts.map
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user