@mlightcad/cad-simple-viewer 1.4.12 → 1.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +15901 -10590
- package/dist/index.umd.cjs +55 -48
- package/dist/libredwg-parser-worker.js +4724 -4762
- package/lib/app/AcApDocManager.d.ts +60 -4
- package/lib/app/AcApDocManager.d.ts.map +1 -1
- package/lib/app/AcApDocManager.js +160 -33
- package/lib/app/AcApDocManager.js.map +1 -1
- package/lib/command/AcApArcCmd.d.ts.map +1 -1
- package/lib/command/AcApArcCmd.js +1 -1
- package/lib/command/AcApArcCmd.js.map +1 -1
- package/lib/command/AcApCircleCmd.d.ts +59 -0
- package/lib/command/AcApCircleCmd.d.ts.map +1 -1
- package/lib/command/AcApCircleCmd.js +489 -18
- package/lib/command/AcApCircleCmd.js.map +1 -1
- package/lib/command/AcApConvertToPngCmd.d.ts +35 -0
- package/lib/command/AcApConvertToPngCmd.d.ts.map +1 -0
- package/lib/command/{AcApZoomToBoxCmd.js → AcApConvertToPngCmd.js} +50 -26
- package/lib/command/AcApConvertToPngCmd.js.map +1 -0
- package/lib/command/AcApEllipseCmd.d.ts +87 -0
- package/lib/command/AcApEllipseCmd.d.ts.map +1 -0
- package/lib/command/AcApEllipseCmd.js +583 -0
- package/lib/command/AcApEllipseCmd.js.map +1 -0
- package/lib/command/AcApHatchCmd.d.ts +210 -0
- package/lib/command/AcApHatchCmd.d.ts.map +1 -0
- package/lib/command/AcApHatchCmd.js +808 -0
- package/lib/command/AcApHatchCmd.js.map +1 -0
- package/lib/command/AcApLayerCmd.d.ts +217 -0
- package/lib/command/AcApLayerCmd.d.ts.map +1 -0
- package/lib/command/AcApLayerCmd.js +768 -0
- package/lib/command/AcApLayerCmd.js.map +1 -0
- package/lib/command/AcApLineCmd.d.ts +36 -1
- package/lib/command/AcApLineCmd.d.ts.map +1 -1
- package/lib/command/AcApLineCmd.js +157 -20
- package/lib/command/AcApLineCmd.js.map +1 -1
- package/lib/command/AcApMeasureAreaCmd.d.ts.map +1 -1
- package/lib/command/AcApMeasureAreaCmd.js +3 -0
- package/lib/command/AcApMeasureAreaCmd.js.map +1 -1
- package/lib/command/AcApMoveCmd.d.ts +16 -0
- package/lib/command/AcApMoveCmd.d.ts.map +1 -0
- package/lib/command/AcApMoveCmd.js +278 -0
- package/lib/command/AcApMoveCmd.js.map +1 -0
- package/lib/command/AcApPngConvertor.d.ts +95 -0
- package/lib/command/AcApPngConvertor.d.ts.map +1 -0
- package/lib/command/AcApPngConvertor.js +205 -0
- package/lib/command/AcApPngConvertor.js.map +1 -0
- package/lib/command/AcApPolygonCmd.d.ts +69 -0
- package/lib/command/AcApPolygonCmd.d.ts.map +1 -0
- package/lib/command/AcApPolygonCmd.js +422 -0
- package/lib/command/AcApPolygonCmd.js.map +1 -0
- package/lib/command/AcApRectCmd.d.ts +149 -4
- package/lib/command/AcApRectCmd.d.ts.map +1 -1
- package/lib/command/AcApRectCmd.js +716 -34
- package/lib/command/AcApRectCmd.js.map +1 -1
- package/lib/command/AcApRevCircleCmd.d.ts +8 -0
- package/lib/command/AcApRevCircleCmd.d.ts.map +1 -1
- package/lib/command/AcApRevCircleCmd.js +30 -6
- package/lib/command/AcApRevCircleCmd.js.map +1 -1
- package/lib/command/AcApRevRectCmd.d.ts +8 -0
- package/lib/command/AcApRevRectCmd.d.ts.map +1 -1
- package/lib/command/AcApRevRectCmd.js +78 -6
- package/lib/command/AcApRevRectCmd.js.map +1 -1
- package/lib/command/AcApSplineCmd.d.ts +66 -1
- package/lib/command/AcApSplineCmd.d.ts.map +1 -1
- package/lib/command/AcApSplineCmd.js +466 -59
- package/lib/command/AcApSplineCmd.js.map +1 -1
- package/lib/command/AcApZoomCmd.d.ts +91 -20
- package/lib/command/AcApZoomCmd.d.ts.map +1 -1
- package/lib/command/AcApZoomCmd.js +288 -23
- package/lib/command/AcApZoomCmd.js.map +1 -1
- package/lib/command/index.d.ts +7 -1
- package/lib/command/index.d.ts.map +1 -1
- package/lib/command/index.js +7 -1
- package/lib/command/index.js.map +1 -1
- package/lib/editor/command/AcEdCommandStack.d.ts +54 -1
- package/lib/editor/command/AcEdCommandStack.d.ts.map +1 -1
- package/lib/editor/command/AcEdCommandStack.js +207 -25
- package/lib/editor/command/AcEdCommandStack.js.map +1 -1
- package/lib/editor/input/AcEdSelectionFilter.d.ts +79 -0
- package/lib/editor/input/AcEdSelectionFilter.d.ts.map +1 -0
- package/lib/editor/input/AcEdSelectionFilter.js +231 -0
- package/lib/editor/input/AcEdSelectionFilter.js.map +1 -0
- package/lib/editor/input/AcEditor.d.ts +20 -2
- package/lib/editor/input/AcEditor.d.ts.map +1 -1
- package/lib/editor/input/AcEditor.js +66 -0
- package/lib/editor/input/AcEditor.js.map +1 -1
- package/lib/editor/input/index.d.ts +1 -0
- package/lib/editor/input/index.d.ts.map +1 -1
- package/lib/editor/input/index.js +1 -0
- package/lib/editor/input/index.js.map +1 -1
- package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts +47 -0
- package/lib/editor/input/prompt/AcEdKeywordCollection.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdKeywordCollection.js +19 -0
- package/lib/editor/input/prompt/AcEdKeywordCollection.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts +7 -0
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.js +17 -0
- package/lib/editor/input/prompt/AcEdPromptAngleOptions.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts +17 -0
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.js +30 -3
- package/lib/editor/input/prompt/AcEdPromptEntityOptions.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptOptions.d.ts +6 -1
- package/lib/editor/input/prompt/AcEdPromptOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptOptions.js +7 -0
- package/lib/editor/input/prompt/AcEdPromptOptions.js.map +1 -1
- package/lib/editor/input/session/AcEdKeywordSession.d.ts +65 -0
- package/lib/editor/input/session/AcEdKeywordSession.d.ts.map +1 -1
- package/lib/editor/input/session/AcEdKeywordSession.js +71 -0
- package/lib/editor/input/session/AcEdKeywordSession.js.map +1 -1
- package/lib/editor/input/ui/AcEdCommandLine.d.ts +23 -0
- package/lib/editor/input/ui/AcEdCommandLine.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdCommandLine.js +42 -6
- package/lib/editor/input/ui/AcEdCommandLine.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInput.d.ts +1 -0
- package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInput.js +8 -2
- package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts +23 -1
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.js +32 -9
- package/lib/editor/input/ui/AcEdFloatingInputBoxes.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +28 -0
- package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdInputManager.d.ts +356 -16
- package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdInputManager.js +964 -529
- package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
- package/lib/editor/input/ui/AcEdRubberBand.d.ts +15 -1
- package/lib/editor/input/ui/AcEdRubberBand.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdRubberBand.js +42 -10
- package/lib/editor/input/ui/AcEdRubberBand.js.map +1 -1
- package/lib/i18n/en/command.d.ts +21 -3
- package/lib/i18n/en/command.d.ts.map +1 -1
- package/lib/i18n/en/command.js +21 -3
- package/lib/i18n/en/command.js.map +1 -1
- package/lib/i18n/en/jig.d.ts +443 -0
- package/lib/i18n/en/jig.d.ts.map +1 -1
- package/lib/i18n/en/jig.js +452 -9
- package/lib/i18n/en/jig.js.map +1 -1
- package/lib/i18n/zh/command.d.ts +21 -3
- package/lib/i18n/zh/command.d.ts.map +1 -1
- package/lib/i18n/zh/command.js +21 -3
- package/lib/i18n/zh/command.js.map +1 -1
- package/lib/i18n/zh/jig.d.ts +443 -0
- package/lib/i18n/zh/jig.d.ts.map +1 -1
- package/lib/i18n/zh/jig.js +452 -9
- package/lib/i18n/zh/jig.js.map +1 -1
- package/lib/plugin/AcApPluginManager.d.ts.map +1 -1
- package/lib/plugin/AcApPluginManager.js.map +1 -1
- package/lib/view/AcTrLayer.d.ts.map +1 -1
- package/lib/view/AcTrLayer.js +5 -3
- package/lib/view/AcTrLayer.js.map +1 -1
- package/lib/view/AcTrView2d.d.ts +0 -1
- package/lib/view/AcTrView2d.d.ts.map +1 -1
- package/lib/view/AcTrView2d.js +17 -4
- package/lib/view/AcTrView2d.js.map +1 -1
- package/package.json +11 -9
- package/lib/command/AcApZoomToBoxCmd.d.ts +0 -29
- package/lib/command/AcApZoomToBoxCmd.d.ts.map +0 -1
- package/lib/command/AcApZoomToBoxCmd.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AcApCircleCmd.js","sourceRoot":"","sources":["../../src/command/AcApCircleCmd.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,UAAU,EAAmB,MAAM,uBAAuB,CAAA;AAEnE,OAAO,EAAe,cAAc,EAAE,MAAM,QAAQ,CAAA;AACpD,OAAO,EAEL,WAAW,EACX,YAAY,EACZ,cAAc,EACd,yBAAyB,EACzB,sBAAsB,EACtB,gBAAgB,EACjB,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC;IAAmC,iCAAsB;IAGvD;;;;OAIG;IACH,uBAAY,IAAkB,EAAE,MAAuB;QACrD,YAAA,MAAK,YAAC,IAAI,CAAC,SAAA;QACX,KAAI,CAAC,OAAO,GAAG,IAAI,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;;IAC1C,CAAC;IAED,sBAAI,iCAAM;aAAV;YACE,OAAO,IAAI,CAAC,OAAO,CAAA;QACrB,CAAC;;;OAAA;IAED,8BAAM,GAAN,UAAO,MAAc;QACnB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,MAAM,CAAA;IAC9B,CAAC;IACH,oBAAC;AAAD,CAAC,AApBD,CAAmC,cAAc,GAoBhD;;AAED;;GAEG;AACH;IAAmC,iCAAW;IAC5C;QACE,YAAA,MAAK,WAAE,SAAA;QACP,KAAI,CAAC,IAAI,GAAG,YAAY,CAAC,KAAK,CAAA;;IAChC,CAAC;IAEK,+BAAO,GAAb,UAAc,OAAoB;;;;;;wBAC1B,YAAY,GAAG,IAAI,sBAAsB,CAC7C,QAAQ,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAChC,CAAA;wBAEC,qBAAM,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAA;;wBADvD,YAAY,GAChB,SAA2D;wBAC7D,IAAI,YAAY,CAAC,MAAM,KAAK,gBAAgB,CAAC,EAAE;4BAAE,sBAAM;wBACjD,MAAM,GAAG,YAAY,CAAC,KAAM,CAAA;wBAE5B,YAAY,GAAG,IAAI,yBAAyB,CAChD,QAAQ,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAChC,CAAA;wBACD,YAAY,CAAC,GAAG,GAAG,IAAI,aAAa,CAAC,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;wBAExD,qBAAM,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAC,YAAY,CAAC,EAAA;;wBAD1D,YAAY,GAChB,SAA8D;wBAChE,IAAI,YAAY,CAAC,MAAM,KAAK,gBAAgB,CAAC,EAAE;4BAAE,sBAAM;wBACjD,MAAM,GAAG,YAAY,CAAC,KAAM,CAAA;wBAE5B,EAAE,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAA;wBACzB,MAAM,GAAG,IAAI,UAAU,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;wBAC7C,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,MAAM,CAAC,CAAA;;;;;KACrD;IACH,oBAAC;AAAD,CAAC,AA5BD,CAAmC,WAAW,GA4B7C"}
|
|
1
|
+
{"version":3,"file":"AcApCircleCmd.js","sourceRoot":"","sources":["../../src/command/AcApCircleCmd.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { AcApContext } from '../app';
|
|
2
|
+
import { AcEdCommand } from '../editor';
|
|
3
|
+
/**
|
|
4
|
+
* Command for exporting the current CAD drawing to PNG format.
|
|
5
|
+
*
|
|
6
|
+
* This command creates a PNG converter and initiates the conversion
|
|
7
|
+
* process to export the current drawing as a PNG file. The command:
|
|
8
|
+
* - Creates a new PNG converter instance
|
|
9
|
+
* - Prompts for optional bounding box (or press Enter to use drawing extents)
|
|
10
|
+
* - Prompts for optional long side pixel value (or press Enter for default)
|
|
11
|
+
* - Converts the current view to PNG format
|
|
12
|
+
* - Automatically downloads the PNG file
|
|
13
|
+
*
|
|
14
|
+
* This is useful for exporting drawings to a raster image format
|
|
15
|
+
* that can be displayed in browsers or used in other applications.
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```typescript
|
|
19
|
+
* const convertCmd = new AcApConvertToPngCmd();
|
|
20
|
+
* convertCmd.execute(context); // User prompted for bounds and longside
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare class AcApConvertToPngCmd extends AcEdCommand {
|
|
24
|
+
/**
|
|
25
|
+
* Executes the PNG conversion command.
|
|
26
|
+
*
|
|
27
|
+
* Prompts the user for:
|
|
28
|
+
* 1. Optional bounding box (press Enter to skip and use drawing extents)
|
|
29
|
+
* 2. Optional long side pixel value (press Enter for default 8000)
|
|
30
|
+
*
|
|
31
|
+
* @param _context - The application context (unused in this command)
|
|
32
|
+
*/
|
|
33
|
+
execute(_context: AcApContext): Promise<void>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=AcApConvertToPngCmd.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcApConvertToPngCmd.d.ts","sourceRoot":"","sources":["../../src/command/AcApConvertToPngCmd.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAkB,MAAM,QAAQ,CAAA;AACpD,OAAO,EACL,WAAW,EAIZ,MAAM,WAAW,CAAA;AAIlB;;;;;;;;;;;;;;;;;;;GAmBG;AACH,qBAAa,mBAAoB,SAAQ,WAAW;IAClD;;;;;;;;OAQG;IACG,OAAO,CAAC,QAAQ,EAAE,WAAW;CAqCpC"}
|
|
@@ -49,55 +49,79 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
49
49
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
|
+
import { AcGeBox2d, AcGePoint2d } from '@mlightcad/data-model';
|
|
52
53
|
import { AcApDocManager } from '../app';
|
|
53
|
-
import { AcEdCommand, AcEdPromptBoxOptions, AcEdPromptStatus } from '../editor';
|
|
54
|
+
import { AcEdCommand, AcEdPromptBoxOptions, AcEdPromptDoubleOptions, AcEdPromptStatus } from '../editor';
|
|
54
55
|
import { AcApI18n } from '../i18n';
|
|
56
|
+
import { AcApPngConvertor } from './AcApPngConvertor';
|
|
55
57
|
/**
|
|
56
|
-
* Command for
|
|
58
|
+
* Command for exporting the current CAD drawing to PNG format.
|
|
57
59
|
*
|
|
58
|
-
* This command
|
|
59
|
-
*
|
|
60
|
-
* -
|
|
61
|
-
* -
|
|
60
|
+
* This command creates a PNG converter and initiates the conversion
|
|
61
|
+
* process to export the current drawing as a PNG file. The command:
|
|
62
|
+
* - Creates a new PNG converter instance
|
|
63
|
+
* - Prompts for optional bounding box (or press Enter to use drawing extents)
|
|
64
|
+
* - Prompts for optional long side pixel value (or press Enter for default)
|
|
65
|
+
* - Converts the current view to PNG format
|
|
66
|
+
* - Automatically downloads the PNG file
|
|
62
67
|
*
|
|
63
|
-
* This
|
|
64
|
-
*
|
|
68
|
+
* This is useful for exporting drawings to a raster image format
|
|
69
|
+
* that can be displayed in browsers or used in other applications.
|
|
65
70
|
*
|
|
66
71
|
* @example
|
|
67
72
|
* ```typescript
|
|
68
|
-
* const
|
|
69
|
-
*
|
|
73
|
+
* const convertCmd = new AcApConvertToPngCmd();
|
|
74
|
+
* convertCmd.execute(context); // User prompted for bounds and longside
|
|
70
75
|
* ```
|
|
71
76
|
*/
|
|
72
|
-
var
|
|
73
|
-
__extends(
|
|
74
|
-
function
|
|
77
|
+
var AcApConvertToPngCmd = /** @class */ (function (_super) {
|
|
78
|
+
__extends(AcApConvertToPngCmd, _super);
|
|
79
|
+
function AcApConvertToPngCmd() {
|
|
75
80
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
76
81
|
}
|
|
77
82
|
/**
|
|
78
|
-
* Executes the
|
|
83
|
+
* Executes the PNG conversion command.
|
|
79
84
|
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
85
|
+
* Prompts the user for:
|
|
86
|
+
* 1. Optional bounding box (press Enter to skip and use drawing extents)
|
|
87
|
+
* 2. Optional long side pixel value (press Enter for default 8000)
|
|
88
|
+
*
|
|
89
|
+
* @param _context - The application context (unused in this command)
|
|
82
90
|
*/
|
|
83
|
-
|
|
91
|
+
AcApConvertToPngCmd.prototype.execute = function (_context) {
|
|
84
92
|
return __awaiter(this, void 0, void 0, function () {
|
|
85
|
-
var
|
|
93
|
+
var converter, boxOptions, boxResult, bounds, db, ext, longSidePrompt, longSideResult, longSide;
|
|
86
94
|
return __generator(this, function (_a) {
|
|
87
95
|
switch (_a.label) {
|
|
88
96
|
case 0:
|
|
89
|
-
|
|
90
|
-
|
|
97
|
+
converter = new AcApPngConvertor();
|
|
98
|
+
boxOptions = new AcEdPromptBoxOptions(AcApI18n.t('pngout.boundsFirstCorner'), AcApI18n.t('pngout.boundsSecondCorner'));
|
|
99
|
+
return [4 /*yield*/, AcApDocManager.instance.editor.getBox(boxOptions)];
|
|
91
100
|
case 1:
|
|
92
101
|
boxResult = _a.sent();
|
|
93
|
-
if (boxResult.status
|
|
94
|
-
|
|
95
|
-
|
|
102
|
+
if (boxResult.status === AcEdPromptStatus.OK && boxResult.value) {
|
|
103
|
+
bounds = boxResult.value;
|
|
104
|
+
}
|
|
105
|
+
else {
|
|
106
|
+
db = AcApDocManager.instance.curDocument.database;
|
|
107
|
+
ext = db.extents;
|
|
108
|
+
bounds = new AcGeBox2d(new AcGePoint2d(ext.min.x, ext.min.y), new AcGePoint2d(ext.max.x, ext.max.y));
|
|
109
|
+
}
|
|
110
|
+
longSidePrompt = new AcEdPromptDoubleOptions(AcApI18n.t('pngout.longSidePrompt'));
|
|
111
|
+
longSidePrompt.allowNone = true;
|
|
112
|
+
return [4 /*yield*/, AcApDocManager.instance.editor.getDouble(longSidePrompt)];
|
|
113
|
+
case 2:
|
|
114
|
+
longSideResult = _a.sent();
|
|
115
|
+
longSide = longSideResult.status === AcEdPromptStatus.OK && longSideResult.value !== undefined
|
|
116
|
+
? longSideResult.value
|
|
117
|
+
: 8000;
|
|
118
|
+
converter.convert(bounds, longSide);
|
|
119
|
+
return [2 /*return*/];
|
|
96
120
|
}
|
|
97
121
|
});
|
|
98
122
|
});
|
|
99
123
|
};
|
|
100
|
-
return
|
|
124
|
+
return AcApConvertToPngCmd;
|
|
101
125
|
}(AcEdCommand));
|
|
102
|
-
export {
|
|
103
|
-
//# sourceMappingURL=
|
|
126
|
+
export { AcApConvertToPngCmd };
|
|
127
|
+
//# sourceMappingURL=AcApConvertToPngCmd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcApConvertToPngCmd.js","sourceRoot":"","sources":["../../src/command/AcApConvertToPngCmd.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAE9D,OAAO,EAAe,cAAc,EAAE,MAAM,QAAQ,CAAA;AACpD,OAAO,EACL,WAAW,EACX,oBAAoB,EACpB,uBAAuB,EACvB,gBAAgB,EACjB,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD;;;;;;;;;;;;;;;;;;;GAmBG;AACH;IAAyC,uCAAW;IAApD;;IA+CA,CAAC;IA9CC;;;;;;;;OAQG;IACG,qCAAO,GAAb,UAAc,QAAqB;;;;;;wBAC3B,SAAS,GAAG,IAAI,gBAAgB,EAAE,CAAA;wBAGlC,UAAU,GAAG,IAAI,oBAAoB,CACzC,QAAQ,CAAC,CAAC,CAAC,0BAA0B,CAAC,EACtC,QAAQ,CAAC,CAAC,CAAC,2BAA2B,CAAC,CACxC,CAAA;wBACiB,qBAAM,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,EAAA;;wBAAnE,SAAS,GAAG,SAAuD;wBAGzE,IAAI,SAAS,CAAC,MAAM,KAAK,gBAAgB,CAAC,EAAE,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC;4BAChE,MAAM,GAAG,SAAS,CAAC,KAAK,CAAA;wBAC1B,CAAC;6BAAM,CAAC;4BAEA,EAAE,GAAG,cAAc,CAAC,QAAQ,CAAC,WAAW,CAAC,QAAQ,CAAA;4BACjD,GAAG,GAAG,EAAE,CAAC,OAAO,CAAA;4BACtB,MAAM,GAAG,IAAI,SAAS,CACpB,IAAI,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,EACrC,IAAI,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CACtC,CAAA;wBACH,CAAC;wBAGK,cAAc,GAAG,IAAI,uBAAuB,CAChD,QAAQ,CAAC,CAAC,CAAC,uBAAuB,CAAC,CACpC,CAAA;wBACD,cAAc,CAAC,SAAS,GAAG,IAAI,CAAA;wBACR,qBAAM,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,EAAA;;wBAA/E,cAAc,GAAG,SAA8D;wBAE/E,QAAQ,GACZ,cAAc,CAAC,MAAM,KAAK,gBAAgB,CAAC,EAAE,IAAI,cAAc,CAAC,KAAK,KAAK,SAAS;4BACjF,CAAC,CAAC,cAAc,CAAC,KAAK;4BACtB,CAAC,CAAC,IAAI,CAAA;wBAEV,SAAS,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;;;;;KACpC;IACH,0BAAC;AAAD,CAAC,AA/CD,CAAyC,WAAW,GA+CnD"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { AcApContext } from '../app';
|
|
2
|
+
import { AcEdCommand } from '../editor';
|
|
3
|
+
/**
|
|
4
|
+
* Command to create one ellipse or ellipse arc.
|
|
5
|
+
*/
|
|
6
|
+
export declare class AcApEllipseCmd extends AcEdCommand {
|
|
7
|
+
/**
|
|
8
|
+
* Creates ELLIPSE command instance.
|
|
9
|
+
*/
|
|
10
|
+
constructor();
|
|
11
|
+
/**
|
|
12
|
+
* Command entry point.
|
|
13
|
+
*
|
|
14
|
+
* Supported branches:
|
|
15
|
+
* - Axis endpoint workflow
|
|
16
|
+
* - Center-first workflow
|
|
17
|
+
* - Arc-prefixed variants for ellipse arc creation
|
|
18
|
+
*
|
|
19
|
+
* @param context - Current application/document context.
|
|
20
|
+
*/
|
|
21
|
+
execute(context: AcApContext): Promise<void>;
|
|
22
|
+
/**
|
|
23
|
+
* Adds one localized keyword to a point prompt.
|
|
24
|
+
*
|
|
25
|
+
* @param prompt - Target point prompt.
|
|
26
|
+
* @param key - Keyword i18n key suffix.
|
|
27
|
+
*/
|
|
28
|
+
private addKeyword;
|
|
29
|
+
/**
|
|
30
|
+
* Appends final ellipse entity to model space.
|
|
31
|
+
*
|
|
32
|
+
* @param context - Current application/document context.
|
|
33
|
+
* @param definition - Ellipse geometric definition to append.
|
|
34
|
+
*/
|
|
35
|
+
private appendEllipse;
|
|
36
|
+
/**
|
|
37
|
+
* Emits one warning message for invalid ellipse input.
|
|
38
|
+
*
|
|
39
|
+
* @param key - Invalid-input category key.
|
|
40
|
+
*/
|
|
41
|
+
private warnInvalidInput;
|
|
42
|
+
/**
|
|
43
|
+
* Runs `Arc` entry branch where user can provide axis endpoints or center.
|
|
44
|
+
*
|
|
45
|
+
* @param context - Current application/document context.
|
|
46
|
+
*/
|
|
47
|
+
private runArcEntryFlow;
|
|
48
|
+
/**
|
|
49
|
+
* Runs center-first workflow:
|
|
50
|
+
* center -> first axis endpoint -> other axis/rotation -> optional arc angles.
|
|
51
|
+
*
|
|
52
|
+
* @param context - Current application/document context.
|
|
53
|
+
* @param arcMode - Whether to continue into arc-angle prompts.
|
|
54
|
+
*/
|
|
55
|
+
private runCenterFlow;
|
|
56
|
+
/**
|
|
57
|
+
* Runs axis-endpoint workflow:
|
|
58
|
+
* first axis endpoint -> second axis endpoint -> other axis/rotation.
|
|
59
|
+
*
|
|
60
|
+
* @param context - Current application/document context.
|
|
61
|
+
* @param firstAxisEndpoint - First endpoint of major/minor axis line.
|
|
62
|
+
* @param arcMode - Whether to continue into arc-angle prompts.
|
|
63
|
+
*/
|
|
64
|
+
private runAxisEndFlow;
|
|
65
|
+
/**
|
|
66
|
+
* Prompts for the second axis radius by point or rotation angle option.
|
|
67
|
+
*
|
|
68
|
+
* In arc mode, this method also continues into arc start/end angle prompts.
|
|
69
|
+
*
|
|
70
|
+
* @param context - Current application/document context.
|
|
71
|
+
* @param center - Ellipse center point.
|
|
72
|
+
* @param firstAxisUnit - Unit direction of first specified axis.
|
|
73
|
+
* @param firstAxisRadius - Radius length along first specified axis.
|
|
74
|
+
* @param arcMode - Whether to return an ellipse arc definition.
|
|
75
|
+
* @returns Final ellipse definition, or `undefined` on cancel/invalid.
|
|
76
|
+
*/
|
|
77
|
+
private promptOtherAxis;
|
|
78
|
+
/**
|
|
79
|
+
* Prompts start and end angles for ellipse-arc creation.
|
|
80
|
+
*
|
|
81
|
+
* @param context - Current application/document context.
|
|
82
|
+
* @param baseEllipse - Base full-ellipse definition before arc trimming.
|
|
83
|
+
* @returns Arc ellipse definition, or `undefined` when canceled.
|
|
84
|
+
*/
|
|
85
|
+
private promptArcAngles;
|
|
86
|
+
}
|
|
87
|
+
//# sourceMappingURL=AcApEllipseCmd.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcApEllipseCmd.d.ts","sourceRoot":"","sources":["../../src/command/AcApEllipseCmd.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,WAAW,EAAkB,MAAM,QAAQ,CAAA;AACpD,OAAO,EAEL,WAAW,EAQZ,MAAM,WAAW,CAAA;AA0PlB;;GAEG;AACH,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;OAEG;;IAMH;;;;;;;;;OASG;IACG,OAAO,CAAC,OAAO,EAAE,WAAW;IAuBlC;;;;;OAKG;IACH,OAAO,CAAC,UAAU;IAQlB;;;;;OAKG;IACH,OAAO,CAAC,aAAa;IAarB;;;;OAIG;IACH,OAAO,CAAC,gBAAgB;IAOxB;;;;OAIG;YACW,eAAe;IAgB7B;;;;;;OAMG;YACW,aAAa;IAqC3B;;;;;;;OAOG;YACW,cAAc;IAsC5B;;;;;;;;;;;OAWG;YACW,eAAe;IA6F7B;;;;;;OAMG;YACW,eAAe;CAqE9B"}
|