dxf-json 0.0.8 → 0.0.9
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/.github/workflows/npm-publish.yml +1 -1
- package/dist/bundle.js +2 -0
- package/dist/bundle.js.LICENSE.txt +5 -0
- package/dist/consts/block.d.ts +10 -0
- package/dist/consts/block.js +22 -0
- package/dist/consts/block.js.map +1 -0
- package/dist/consts/color.d.ts +5 -0
- package/dist/consts/color.js +10 -0
- package/dist/consts/color.js.map +1 -0
- package/dist/consts/config.d.ts +2 -0
- package/dist/consts/config.js +6 -0
- package/dist/consts/config.js.map +1 -0
- package/dist/consts/dimension.d.ts +61 -0
- package/dist/consts/dimension.js +74 -0
- package/dist/consts/dimension.js.map +1 -0
- package/dist/consts/hatch.d.ts +44 -0
- package/dist/consts/hatch.js +57 -0
- package/dist/consts/hatch.js.map +1 -0
- package/dist/consts/header.d.ts +9 -0
- package/dist/consts/header.js +13 -0
- package/dist/consts/header.js.map +1 -0
- package/dist/consts/index.d.ts +9 -0
- package/dist/consts/index.js +26 -0
- package/dist/consts/index.js.map +1 -0
- package/dist/consts/lineweight.d.ts +5 -0
- package/dist/consts/lineweight.js +10 -0
- package/dist/consts/lineweight.js.map +1 -0
- package/dist/consts/measurement.d.ts +4 -0
- package/dist/consts/measurement.js +9 -0
- package/dist/consts/measurement.js.map +1 -0
- package/dist/consts/obscuredLineTypes.d.ts +21 -0
- package/dist/consts/obscuredLineTypes.js +26 -0
- package/dist/consts/obscuredLineTypes.js.map +1 -0
- package/dist/consts/scene.d.ts +2 -0
- package/dist/consts/scene.js +6 -0
- package/dist/consts/scene.js.map +1 -0
- package/dist/consts/viewport.d.ts +56 -0
- package/dist/consts/viewport.js +67 -0
- package/dist/consts/viewport.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/dist/parser/AutoCadColorIndex.d.ts +8 -0
- package/dist/parser/AutoCadColorIndex.js +267 -0
- package/dist/parser/AutoCadColorIndex.js.map +1 -0
- package/dist/parser/DxfArrayScanner.d.ts +38 -0
- package/dist/parser/DxfArrayScanner.js +159 -0
- package/dist/parser/DxfArrayScanner.js.map +1 -0
- package/dist/parser/DxfParser.d.ts +9 -0
- package/dist/parser/DxfParser.js +108 -0
- package/dist/parser/DxfParser.js.map +1 -0
- package/dist/parser/ParseHelpers.d.ts +21 -0
- package/dist/parser/ParseHelpers.js +129 -0
- package/dist/parser/ParseHelpers.js.map +1 -0
- package/dist/parser/blocks/blocks.test.d.ts +1 -0
- package/dist/parser/blocks/blocks.test.js +86 -0
- package/dist/parser/blocks/blocks.test.js.map +1 -0
- package/dist/parser/blocks/index.d.ts +4 -0
- package/dist/parser/blocks/index.js +83 -0
- package/dist/parser/blocks/index.js.map +1 -0
- package/dist/parser/blocks/types.d.ts +14 -0
- package/dist/parser/blocks/types.js +3 -0
- package/dist/parser/blocks/types.js.map +1 -0
- package/dist/parser/entities/3dface.js +106 -0
- package/dist/parser/entities/3dface.js.map +1 -0
- package/dist/parser/entities/arc/index.d.ts +2 -0
- package/dist/parser/entities/arc/index.js +19 -0
- package/dist/parser/entities/arc/index.js.map +1 -0
- package/dist/parser/entities/arc/parser.d.ts +7 -0
- package/dist/parser/entities/arc/parser.js +63 -0
- package/dist/parser/entities/arc/parser.js.map +1 -0
- package/dist/parser/entities/arc/types.d.ts +12 -0
- package/dist/parser/entities/arc/types.js +3 -0
- package/dist/parser/entities/arc/types.js.map +1 -0
- package/dist/parser/entities/attdef/consts.d.ts +11 -0
- package/dist/parser/entities/attdef/consts.js +17 -0
- package/dist/parser/entities/attdef/consts.js.map +1 -0
- package/dist/parser/entities/attdef/index.d.ts +3 -0
- package/dist/parser/entities/attdef/index.js +20 -0
- package/dist/parser/entities/attdef/index.js.map +1 -0
- package/dist/parser/entities/attdef/parser.d.ts +8 -0
- package/dist/parser/entities/attdef/parser.js +108 -0
- package/dist/parser/entities/attdef/parser.js.map +1 -0
- package/dist/parser/entities/attdef/types.d.ts +17 -0
- package/dist/parser/entities/attdef/types.js +3 -0
- package/dist/parser/entities/attdef/types.js.map +1 -0
- package/dist/parser/entities/attribute/consts.d.ts +6 -0
- package/dist/parser/entities/attribute/consts.js +11 -0
- package/dist/parser/entities/attribute/consts.js.map +1 -0
- package/dist/parser/entities/attribute/index.d.ts +3 -0
- package/dist/parser/entities/attribute/index.js +20 -0
- package/dist/parser/entities/attribute/index.js.map +1 -0
- package/dist/parser/entities/attribute/parser.d.ts +8 -0
- package/dist/parser/entities/attribute/parser.js +185 -0
- package/dist/parser/entities/attribute/parser.js.map +1 -0
- package/dist/parser/entities/attribute/types.d.ts +30 -0
- package/dist/parser/entities/attribute/types.js +3 -0
- package/dist/parser/entities/attribute/types.js.map +1 -0
- package/dist/parser/entities/circle/index.d.ts +2 -0
- package/dist/parser/entities/circle/index.js +19 -0
- package/dist/parser/entities/circle/index.js.map +1 -0
- package/dist/parser/entities/circle/parser.d.ts +8 -0
- package/dist/parser/entities/circle/parser.js +50 -0
- package/dist/parser/entities/circle/parser.js.map +1 -0
- package/dist/parser/entities/circle/types.d.ts +10 -0
- package/dist/parser/entities/circle/types.js +3 -0
- package/dist/parser/entities/circle/types.js.map +1 -0
- package/dist/parser/entities/dimension/common.d.ts +6 -0
- package/dist/parser/entities/dimension/common.js +122 -0
- package/dist/parser/entities/dimension/common.js.map +1 -0
- package/dist/parser/entities/dimension/index.d.ts +6 -0
- package/dist/parser/entities/dimension/index.js +21 -0
- package/dist/parser/entities/dimension/index.js.map +1 -0
- package/dist/parser/entities/dimension/types.d.ts +48 -0
- package/dist/parser/entities/dimension/types.js +3 -0
- package/dist/parser/entities/dimension/types.js.map +1 -0
- package/dist/parser/entities/ellipse/index.d.ts +2 -0
- package/dist/parser/entities/ellipse/index.js +19 -0
- package/dist/parser/entities/ellipse/index.js.map +1 -0
- package/dist/parser/entities/ellipse/parser.d.ts +7 -0
- package/dist/parser/entities/ellipse/parser.js +59 -0
- package/dist/parser/entities/ellipse/parser.js.map +1 -0
- package/dist/parser/entities/ellipse/types.d.ts +12 -0
- package/dist/parser/entities/ellipse/types.js +3 -0
- package/dist/parser/entities/ellipse/types.js.map +1 -0
- package/dist/parser/entities/entities.test.d.ts +1 -0
- package/dist/parser/entities/entities.test.js +81 -0
- package/dist/parser/entities/entities.test.js.map +1 -0
- package/dist/parser/entities/hatch/boundaryPathData/edge.d.ts +6 -0
- package/dist/parser/entities/hatch/boundaryPathData/edge.js +178 -0
- package/dist/parser/entities/hatch/boundaryPathData/edge.js.map +1 -0
- package/dist/parser/entities/hatch/boundaryPathData/index.d.ts +5 -0
- package/dist/parser/entities/hatch/boundaryPathData/index.js +23 -0
- package/dist/parser/entities/hatch/boundaryPathData/index.js.map +1 -0
- package/dist/parser/entities/hatch/boundaryPathData/polyline.d.ts +2 -0
- package/dist/parser/entities/hatch/boundaryPathData/polyline.js +41 -0
- package/dist/parser/entities/hatch/boundaryPathData/polyline.js.map +1 -0
- package/dist/parser/entities/hatch/boundaryPathData/shared.d.ts +2 -0
- package/dist/parser/entities/hatch/boundaryPathData/shared.js +19 -0
- package/dist/parser/entities/hatch/boundaryPathData/shared.js.map +1 -0
- package/dist/parser/entities/hatch/index.d.ts +8 -0
- package/dist/parser/entities/hatch/index.js +183 -0
- package/dist/parser/entities/hatch/index.js.map +1 -0
- package/dist/parser/entities/hatch/patternData.d.ts +3 -0
- package/dist/parser/entities/hatch/patternData.js +54 -0
- package/dist/parser/entities/hatch/patternData.js.map +1 -0
- package/dist/parser/entities/hatch/types/boundaryPath.d.ts +59 -0
- package/dist/parser/entities/hatch/types/boundaryPath.js +3 -0
- package/dist/parser/entities/hatch/types/boundaryPath.js.map +1 -0
- package/dist/parser/entities/hatch/types/definitionLine.d.ts +8 -0
- package/dist/parser/entities/hatch/types/definitionLine.js +3 -0
- package/dist/parser/entities/hatch/types/definitionLine.js.map +1 -0
- package/dist/parser/entities/hatch/types/hatch.d.ts +38 -0
- package/dist/parser/entities/hatch/types/hatch.js +3 -0
- package/dist/parser/entities/hatch/types/hatch.js.map +1 -0
- package/dist/parser/entities/hatch/types/index.d.ts +3 -0
- package/dist/parser/entities/hatch/types/index.js +20 -0
- package/dist/parser/entities/hatch/types/index.js.map +1 -0
- package/dist/parser/entities/index.d.ts +8 -0
- package/dist/parser/entities/index.js +81 -0
- package/dist/parser/entities/index.js.map +1 -0
- package/dist/parser/entities/insert/index.d.ts +2 -0
- package/dist/parser/entities/insert/index.js +19 -0
- package/dist/parser/entities/insert/index.js.map +1 -0
- package/dist/parser/entities/insert/parser.d.ts +8 -0
- package/dist/parser/entities/insert/parser.js +97 -0
- package/dist/parser/entities/insert/parser.js.map +1 -0
- package/dist/parser/entities/insert/types.d.ts +18 -0
- package/dist/parser/entities/insert/types.js +3 -0
- package/dist/parser/entities/insert/types.js.map +1 -0
- package/dist/parser/entities/leader/consts.d.ts +6 -0
- package/dist/parser/entities/leader/consts.js +11 -0
- package/dist/parser/entities/leader/consts.js.map +1 -0
- package/dist/parser/entities/leader/index.d.ts +3 -0
- package/dist/parser/entities/leader/index.js +20 -0
- package/dist/parser/entities/leader/index.js.map +1 -0
- package/dist/parser/entities/leader/parser.d.ts +8 -0
- package/dist/parser/entities/leader/parser.js +110 -0
- package/dist/parser/entities/leader/parser.js.map +1 -0
- package/dist/parser/entities/leader/types.d.ts +23 -0
- package/dist/parser/entities/leader/types.js +3 -0
- package/dist/parser/entities/leader/types.js.map +1 -0
- package/dist/parser/entities/line/index.d.ts +2 -0
- package/dist/parser/entities/line/index.js +19 -0
- package/dist/parser/entities/line/index.js.map +1 -0
- package/dist/parser/entities/line/parser.d.ts +8 -0
- package/dist/parser/entities/line/parser.js +50 -0
- package/dist/parser/entities/line/parser.js.map +1 -0
- package/dist/parser/entities/line/types.d.ts +10 -0
- package/dist/parser/entities/line/types.js +3 -0
- package/dist/parser/entities/line/types.js.map +1 -0
- package/dist/parser/entities/lwpolyline/consts.d.ts +4 -0
- package/dist/parser/entities/lwpolyline/consts.js +9 -0
- package/dist/parser/entities/lwpolyline/consts.js.map +1 -0
- package/dist/parser/entities/lwpolyline/index.d.ts +3 -0
- package/dist/parser/entities/lwpolyline/index.js +20 -0
- package/dist/parser/entities/lwpolyline/index.js.map +1 -0
- package/dist/parser/entities/lwpolyline/parser.d.ts +7 -0
- package/dist/parser/entities/lwpolyline/parser.js +105 -0
- package/dist/parser/entities/lwpolyline/parser.js.map +1 -0
- package/dist/parser/entities/lwpolyline/types.d.ts +19 -0
- package/dist/parser/entities/lwpolyline/types.js +3 -0
- package/dist/parser/entities/lwpolyline/types.js.map +1 -0
- package/dist/parser/entities/mtext/consts.d.ts +5 -0
- package/dist/parser/entities/mtext/consts.js +10 -0
- package/dist/parser/entities/mtext/consts.js.map +1 -0
- package/dist/parser/entities/mtext/index.d.ts +3 -0
- package/dist/parser/entities/mtext/index.js +20 -0
- package/dist/parser/entities/mtext/index.js.map +1 -0
- package/dist/parser/entities/mtext/parser.d.ts +10 -0
- package/dist/parser/entities/mtext/parser.js +188 -0
- package/dist/parser/entities/mtext/parser.js.map +1 -0
- package/dist/parser/entities/mtext/types.d.ts +33 -0
- package/dist/parser/entities/mtext/types.js +3 -0
- package/dist/parser/entities/mtext/types.js.map +1 -0
- package/dist/parser/entities/point/index.d.ts +2 -0
- package/dist/parser/entities/point/index.js +19 -0
- package/dist/parser/entities/point/index.js.map +1 -0
- package/dist/parser/entities/point/parser.d.ts +6 -0
- package/dist/parser/entities/point/parser.js +54 -0
- package/dist/parser/entities/point/parser.js.map +1 -0
- package/dist/parser/entities/point/types.d.ts +9 -0
- package/dist/parser/entities/point/types.js +3 -0
- package/dist/parser/entities/point/types.js.map +1 -0
- package/dist/parser/entities/polyline/consts.d.ts +16 -0
- package/dist/parser/entities/polyline/consts.js +22 -0
- package/dist/parser/entities/polyline/consts.js.map +1 -0
- package/dist/parser/entities/polyline/index.d.ts +3 -0
- package/dist/parser/entities/polyline/index.js +20 -0
- package/dist/parser/entities/polyline/index.js.map +1 -0
- package/dist/parser/entities/polyline/parser.d.ts +7 -0
- package/dist/parser/entities/polyline/parser.js +118 -0
- package/dist/parser/entities/polyline/parser.js.map +1 -0
- package/dist/parser/entities/polyline/types.d.ts +19 -0
- package/dist/parser/entities/polyline/types.js +3 -0
- package/dist/parser/entities/polyline/types.js.map +1 -0
- package/dist/parser/entities/section/index.d.ts +2 -0
- package/dist/parser/entities/section/index.js +19 -0
- package/dist/parser/entities/section/index.js.map +1 -0
- package/dist/parser/entities/section/parser.d.ts +7 -0
- package/dist/parser/entities/section/parser.js +97 -0
- package/dist/parser/entities/section/parser.js.map +1 -0
- package/dist/parser/entities/section/types.d.ts +19 -0
- package/dist/parser/entities/section/types.js +3 -0
- package/dist/parser/entities/section/types.js.map +1 -0
- package/dist/parser/entities/shared.d.ts +35 -0
- package/dist/parser/entities/shared.js +136 -0
- package/dist/parser/entities/shared.js.map +1 -0
- package/dist/parser/entities/solid/index.d.ts +2 -0
- package/dist/parser/entities/solid/index.js +19 -0
- package/dist/parser/entities/solid/index.js.map +1 -0
- package/dist/parser/entities/solid/parser.d.ts +8 -0
- package/dist/parser/entities/solid/parser.js +48 -0
- package/dist/parser/entities/solid/parser.js.map +1 -0
- package/dist/parser/entities/solid/types.d.ts +9 -0
- package/dist/parser/entities/solid/types.js +3 -0
- package/dist/parser/entities/solid/types.js.map +1 -0
- package/dist/parser/entities/spline/consts.d.ts +8 -0
- package/dist/parser/entities/spline/consts.js +13 -0
- package/dist/parser/entities/spline/consts.js.map +1 -0
- package/dist/parser/entities/spline/index.d.ts +3 -0
- package/dist/parser/entities/spline/index.js +20 -0
- package/dist/parser/entities/spline/index.js.map +1 -0
- package/dist/parser/entities/spline/parser.d.ts +8 -0
- package/dist/parser/entities/spline/parser.js +113 -0
- package/dist/parser/entities/spline/parser.js.map +1 -0
- package/dist/parser/entities/spline/types.d.ts +21 -0
- package/dist/parser/entities/spline/types.js +3 -0
- package/dist/parser/entities/spline/types.js.map +1 -0
- package/dist/parser/entities/text/consts.d.ts +19 -0
- package/dist/parser/entities/text/consts.js +26 -0
- package/dist/parser/entities/text/consts.js.map +1 -0
- package/dist/parser/entities/text/index.d.ts +3 -0
- package/dist/parser/entities/text/index.js +20 -0
- package/dist/parser/entities/text/index.js.map +1 -0
- package/dist/parser/entities/text/parser.d.ts +26 -0
- package/dist/parser/entities/text/parser.js +112 -0
- package/dist/parser/entities/text/parser.js.map +1 -0
- package/dist/parser/entities/text/types.d.ts +20 -0
- package/dist/parser/entities/text/types.js +3 -0
- package/dist/parser/entities/text/types.js.map +1 -0
- package/dist/parser/entities/vertex/consts.d.ts +10 -0
- package/dist/parser/entities/vertex/consts.js +15 -0
- package/dist/parser/entities/vertex/consts.js.map +1 -0
- package/dist/parser/entities/vertex/index.d.ts +3 -0
- package/dist/parser/entities/vertex/index.js +20 -0
- package/dist/parser/entities/vertex/index.js.map +1 -0
- package/dist/parser/entities/vertex/parser.d.ts +8 -0
- package/dist/parser/entities/vertex/parser.js +86 -0
- package/dist/parser/entities/vertex/parser.js.map +1 -0
- package/dist/parser/entities/vertex/types.d.ts +16 -0
- package/dist/parser/entities/vertex/types.js +3 -0
- package/dist/parser/entities/vertex/types.js.map +1 -0
- package/dist/parser/entities/viewport/index.d.ts +5 -0
- package/dist/parser/entities/viewport/index.js +195 -0
- package/dist/parser/entities/viewport/index.js.map +1 -0
- package/dist/parser/entities/viewport/types.d.ts +51 -0
- package/dist/parser/entities/viewport/types.js +3 -0
- package/dist/parser/entities/viewport/types.js.map +1 -0
- package/dist/parser/filterDummyBlocks.d.ts +2 -0
- package/dist/parser/filterDummyBlocks.js +37 -0
- package/dist/parser/filterDummyBlocks.js.map +1 -0
- package/dist/parser/header/index.d.ts +3 -0
- package/dist/parser/header/index.js +32 -0
- package/dist/parser/header/index.js.map +1 -0
- package/dist/parser/objects/common.d.ts +8 -0
- package/dist/parser/objects/common.js +51 -0
- package/dist/parser/objects/common.js.map +1 -0
- package/dist/parser/objects/dictionary.d.ts +20 -0
- package/dist/parser/objects/dictionary.js +50 -0
- package/dist/parser/objects/dictionary.js.map +1 -0
- package/dist/parser/objects/index.d.ts +6 -0
- package/dist/parser/objects/index.js +43 -0
- package/dist/parser/objects/index.js.map +1 -0
- package/dist/parser/objects/layout.d.ts +30 -0
- package/dist/parser/objects/layout.js +110 -0
- package/dist/parser/objects/layout.js.map +1 -0
- package/dist/parser/objects/plotSettings.d.ts +64 -0
- package/dist/parser/objects/plotSettings.js +198 -0
- package/dist/parser/objects/plotSettings.js.map +1 -0
- package/dist/parser/objects/treefy.d.ts +2 -0
- package/dist/parser/objects/treefy.js +37 -0
- package/dist/parser/objects/treefy.js.map +1 -0
- package/dist/parser/objects/types.d.ts +15 -0
- package/dist/parser/objects/types.js +3 -0
- package/dist/parser/objects/types.js.map +1 -0
- package/dist/parser/shared/index.d.ts +7 -0
- package/dist/parser/shared/index.js +22 -0
- package/dist/parser/shared/index.js.map +1 -0
- package/dist/parser/shared/parsePoint.d.ts +7 -0
- package/dist/parser/shared/parsePoint.js +33 -0
- package/dist/parser/shared/parsePoint.js.map +1 -0
- package/dist/parser/shared/parserGenerator.d.ts +15 -0
- package/dist/parser/shared/parserGenerator.js +114 -0
- package/dist/parser/shared/parserGenerator.js.map +1 -0
- package/dist/parser/shared/parserGenerator.test.d.ts +1 -0
- package/dist/parser/shared/parserGenerator.test.js +153 -0
- package/dist/parser/shared/parserGenerator.test.js.map +1 -0
- package/dist/parser/shared/xdata/index.d.ts +3 -0
- package/dist/parser/shared/xdata/index.js +20 -0
- package/dist/parser/shared/xdata/index.js.map +1 -0
- package/dist/parser/shared/xdata/interpreter.d.ts +20 -0
- package/dist/parser/shared/xdata/interpreter.js +43 -0
- package/dist/parser/shared/xdata/interpreter.js.map +1 -0
- package/dist/parser/shared/xdata/interpreter.test.d.ts +1 -0
- package/dist/parser/shared/xdata/interpreter.test.js +83 -0
- package/dist/parser/shared/xdata/interpreter.test.js.map +1 -0
- package/dist/parser/shared/xdata/parser.d.ts +6 -0
- package/dist/parser/shared/xdata/parser.js +133 -0
- package/dist/parser/shared/xdata/parser.js.map +1 -0
- package/dist/parser/shared/xdata/parser.test.d.ts +1 -0
- package/dist/parser/shared/xdata/parser.test.js +64 -0
- package/dist/parser/shared/xdata/parser.test.js.map +1 -0
- package/dist/parser/shared/xdata/types.d.ts +9 -0
- package/dist/parser/shared/xdata/types.js +3 -0
- package/dist/parser/shared/xdata/types.js.map +1 -0
- package/dist/parser/tables/blockRecord/index.d.ts +2 -0
- package/dist/parser/tables/blockRecord/index.js +19 -0
- package/dist/parser/tables/blockRecord/index.js.map +1 -0
- package/dist/parser/tables/blockRecord/parser.d.ts +1 -0
- package/dist/parser/tables/blockRecord/parser.js +45 -0
- package/dist/parser/tables/blockRecord/parser.js.map +1 -0
- package/dist/parser/tables/blockRecord/types.d.ts +10 -0
- package/dist/parser/tables/blockRecord/types.js +3 -0
- package/dist/parser/tables/blockRecord/types.js.map +1 -0
- package/dist/parser/tables/dimStyle/consts.d.ts +2 -0
- package/dist/parser/tables/dimStyle/consts.js +424 -0
- package/dist/parser/tables/dimStyle/consts.js.map +1 -0
- package/dist/parser/tables/dimStyle/index.d.ts +3 -0
- package/dist/parser/tables/dimStyle/index.js +20 -0
- package/dist/parser/tables/dimStyle/index.js.map +1 -0
- package/dist/parser/tables/dimStyle/parser.d.ts +1 -0
- package/dist/parser/tables/dimStyle/parser.js +35 -0
- package/dist/parser/tables/dimStyle/parser.js.map +1 -0
- package/dist/parser/tables/dimStyle/types.d.ts +83 -0
- package/dist/parser/tables/dimStyle/types.js +3 -0
- package/dist/parser/tables/dimStyle/types.js.map +1 -0
- package/dist/parser/tables/index.d.ts +2 -0
- package/dist/parser/tables/index.js +19 -0
- package/dist/parser/tables/index.js.map +1 -0
- package/dist/parser/tables/layer/index.d.ts +2 -0
- package/dist/parser/tables/layer/index.js +19 -0
- package/dist/parser/tables/layer/index.js.map +1 -0
- package/dist/parser/tables/layer/parser.d.ts +1 -0
- package/dist/parser/tables/layer/parser.js +55 -0
- package/dist/parser/tables/layer/parser.js.map +1 -0
- package/dist/parser/tables/layer/types.d.ts +13 -0
- package/dist/parser/tables/layer/types.js +3 -0
- package/dist/parser/tables/layer/types.js.map +1 -0
- package/dist/parser/tables/ltype/consts.d.ts +6 -0
- package/dist/parser/tables/ltype/consts.js +11 -0
- package/dist/parser/tables/ltype/consts.js.map +1 -0
- package/dist/parser/tables/ltype/index.d.ts +3 -0
- package/dist/parser/tables/ltype/index.js +20 -0
- package/dist/parser/tables/ltype/index.js.map +1 -0
- package/dist/parser/tables/ltype/parser.d.ts +1 -0
- package/dist/parser/tables/ltype/parser.js +105 -0
- package/dist/parser/tables/ltype/parser.js.map +1 -0
- package/dist/parser/tables/ltype/types.d.ts +21 -0
- package/dist/parser/tables/ltype/types.js +3 -0
- package/dist/parser/tables/ltype/types.js.map +1 -0
- package/dist/parser/tables/parser.d.ts +2 -0
- package/dist/parser/tables/parser.js +90 -0
- package/dist/parser/tables/parser.js.map +1 -0
- package/dist/parser/tables/shared.d.ts +2 -0
- package/dist/parser/tables/shared.js +32 -0
- package/dist/parser/tables/shared.js.map +1 -0
- package/dist/parser/tables/style/index.d.ts +2 -0
- package/dist/parser/tables/style/index.js +19 -0
- package/dist/parser/tables/style/index.js.map +1 -0
- package/dist/parser/tables/style/parser.d.ts +1 -0
- package/dist/parser/tables/style/parser.js +68 -0
- package/dist/parser/tables/style/parser.js.map +1 -0
- package/dist/parser/tables/style/types.d.ts +14 -0
- package/dist/parser/tables/style/types.js +3 -0
- package/dist/parser/tables/style/types.js.map +1 -0
- package/dist/parser/tables/types.d.ts +14 -0
- package/dist/parser/tables/types.js +3 -0
- package/dist/parser/tables/types.js.map +1 -0
- package/dist/parser/tables/vport/index.d.ts +2 -0
- package/dist/parser/tables/vport/index.js +19 -0
- package/dist/parser/tables/vport/index.js.map +1 -0
- package/dist/parser/tables/vport/parser.d.ts +1 -0
- package/dist/parser/tables/vport/parser.js +201 -0
- package/dist/parser/tables/vport/parser.js.map +1 -0
- package/dist/parser/tables/vport/types.d.ts +43 -0
- package/dist/parser/tables/vport/types.js +3 -0
- package/dist/parser/tables/vport/types.js.map +1 -0
- package/dist/parser/types.d.ts +29 -0
- package/dist/parser/types.js +3 -0
- package/dist/parser/types.js.map +1 -0
- package/dist/types/color.d.ts +3 -0
- package/dist/types/color.js +3 -0
- package/dist/types/color.js.map +1 -0
- package/dist/types/dxfHeader.d.ts +16 -0
- package/dist/types/dxfHeader.js +3 -0
- package/dist/types/dxfHeader.js.map +1 -0
- package/dist/types/entity.d.ts +6 -0
- package/dist/types/entity.js +3 -0
- package/dist/types/entity.js.map +1 -0
- package/dist/types/index.d.ts +24 -0
- package/dist/types/index.js +20 -0
- package/dist/types/index.js.map +1 -0
- package/dist/utils/binarySearch.d.ts +1 -0
- package/dist/utils/binarySearch.js +23 -0
- package/dist/utils/binarySearch.js.map +1 -0
- package/dist/utils/disjointSet.d.ts +6 -0
- package/dist/utils/disjointSet.js +52 -0
- package/dist/utils/disjointSet.js.map +1 -0
- package/dist/utils/flooding.d.ts +8 -0
- package/dist/utils/flooding.js +26 -0
- package/dist/utils/flooding.js.map +1 -0
- package/dist/utils/functional.d.ts +17 -0
- package/dist/utils/functional.js +111 -0
- package/dist/utils/functional.js.map +1 -0
- package/dist/utils/graph.d.ts +19 -0
- package/dist/utils/graph.js +47 -0
- package/dist/utils/graph.js.map +1 -0
- package/dist/utils/index.d.ts +30 -0
- package/dist/utils/index.js +106 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/queue.d.ts +19 -0
- package/dist/utils/queue.js +71 -0
- package/dist/utils/queue.js.map +1 -0
- package/dist/utils/triangle.d.ts +2 -0
- package/dist/utils/triangle.js +19 -0
- package/dist/utils/triangle.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Point3D } from '../../../types';
|
|
2
|
+
import type { CommonDxfEntity } from '../shared';
|
|
3
|
+
export interface SolidEntity extends CommonDxfEntity {
|
|
4
|
+
type: 'SOLID';
|
|
5
|
+
subclassMarker: 'AcDbTrace';
|
|
6
|
+
points: Point3D[];
|
|
7
|
+
thickness: number;
|
|
8
|
+
extrusionDirection: Point3D;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/parser/entities/solid/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SplineFlag = void 0;
|
|
4
|
+
var SplineFlag;
|
|
5
|
+
(function (SplineFlag) {
|
|
6
|
+
SplineFlag[SplineFlag["NONE"] = 0] = "NONE";
|
|
7
|
+
SplineFlag[SplineFlag["CLOSED"] = 1] = "CLOSED";
|
|
8
|
+
SplineFlag[SplineFlag["PERIODIC"] = 2] = "PERIODIC";
|
|
9
|
+
SplineFlag[SplineFlag["RATIONAL"] = 4] = "RATIONAL";
|
|
10
|
+
SplineFlag[SplineFlag["PLANAR"] = 8] = "PLANAR";
|
|
11
|
+
SplineFlag[SplineFlag["LINEAR"] = 16] = "LINEAR";
|
|
12
|
+
})(SplineFlag || (exports.SplineFlag = SplineFlag = {}));
|
|
13
|
+
//# sourceMappingURL=consts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../../src/parser/entities/spline/consts.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,+CAAU,CAAA;IACV,mDAAY,CAAA;IACZ,mDAAY,CAAA;IACZ,+CAAU,CAAA;IACV,gDAAW,CAAA;AACf,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
__exportStar(require("./consts"), exports);
|
|
19
|
+
__exportStar(require("./parser"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/parser/entities/spline/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type DxfArrayScanner from '../../DxfArrayScanner';
|
|
2
|
+
import type { ScannerGroup } from '../../DxfArrayScanner';
|
|
3
|
+
import type { SplineEntity } from './types';
|
|
4
|
+
export declare class SplineEntityParser {
|
|
5
|
+
static ForEntityName: string;
|
|
6
|
+
private parser;
|
|
7
|
+
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): SplineEntity;
|
|
8
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SplineEntityParser = void 0;
|
|
4
|
+
const parserGenerator_1 = require("../../shared/parserGenerator");
|
|
5
|
+
const shared_1 = require("../shared");
|
|
6
|
+
const DefaultSplineEntity = {
|
|
7
|
+
knotTolerance: 1e-6,
|
|
8
|
+
controlTolerance: 1e-6,
|
|
9
|
+
fitTolerance: 1e-9,
|
|
10
|
+
knotValues: [],
|
|
11
|
+
controlPoints: [],
|
|
12
|
+
fitPoints: [],
|
|
13
|
+
};
|
|
14
|
+
const SplineEntityParserSnippets = [
|
|
15
|
+
{
|
|
16
|
+
code: 11,
|
|
17
|
+
name: 'fitPoints',
|
|
18
|
+
isMultiple: true,
|
|
19
|
+
parser: parserGenerator_1.PointParser,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
code: 10,
|
|
23
|
+
name: 'controlPoints',
|
|
24
|
+
isMultiple: true,
|
|
25
|
+
parser: parserGenerator_1.PointParser,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
code: 41,
|
|
29
|
+
name: 'weights',
|
|
30
|
+
isMultiple: true,
|
|
31
|
+
parser: parserGenerator_1.Identity,
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
code: 40,
|
|
35
|
+
name: 'knots',
|
|
36
|
+
isMultiple: true,
|
|
37
|
+
parser: parserGenerator_1.Identity,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
code: 13,
|
|
41
|
+
name: 'endTangent',
|
|
42
|
+
parser: parserGenerator_1.PointParser,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
code: 12,
|
|
46
|
+
name: 'startTangent',
|
|
47
|
+
parser: parserGenerator_1.PointParser,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
code: 44,
|
|
51
|
+
name: 'fitTolerance',
|
|
52
|
+
parser: parserGenerator_1.Identity,
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
code: 43,
|
|
56
|
+
name: 'controlTolerance',
|
|
57
|
+
parser: parserGenerator_1.Identity,
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
code: 42,
|
|
61
|
+
name: 'knotTolerance',
|
|
62
|
+
parser: parserGenerator_1.Identity,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
code: 74,
|
|
66
|
+
name: 'numberOfFitPoints',
|
|
67
|
+
parser: parserGenerator_1.Identity,
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
code: 73,
|
|
71
|
+
name: 'numberOfControlPoints',
|
|
72
|
+
parser: parserGenerator_1.Identity,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
code: 72,
|
|
76
|
+
name: 'numberOfKnots',
|
|
77
|
+
parser: parserGenerator_1.Identity,
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
code: 71,
|
|
81
|
+
name: 'degree',
|
|
82
|
+
parser: parserGenerator_1.Identity,
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
code: 70,
|
|
86
|
+
name: 'flag',
|
|
87
|
+
parser: parserGenerator_1.Identity,
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
code: 210,
|
|
91
|
+
name: 'normal',
|
|
92
|
+
parser: parserGenerator_1.PointParser,
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
code: 100,
|
|
96
|
+
name: 'subclassMarker',
|
|
97
|
+
parser: parserGenerator_1.Identity,
|
|
98
|
+
},
|
|
99
|
+
...shared_1.CommonEntitySnippets,
|
|
100
|
+
];
|
|
101
|
+
class SplineEntityParser {
|
|
102
|
+
constructor() {
|
|
103
|
+
this.parser = (0, parserGenerator_1.createParser)(SplineEntityParserSnippets, DefaultSplineEntity);
|
|
104
|
+
}
|
|
105
|
+
parseEntity(scanner, curr) {
|
|
106
|
+
const entity = {};
|
|
107
|
+
this.parser(curr, scanner, entity);
|
|
108
|
+
return entity;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.SplineEntityParser = SplineEntityParser;
|
|
112
|
+
SplineEntityParser.ForEntityName = 'SPLINE';
|
|
113
|
+
//# sourceMappingURL=parser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.js","sourceRoot":"","sources":["../../../../src/parser/entities/spline/parser.ts"],"names":[],"mappings":";;;AAEA,kEAKsC;AACtC,sCAAiD;AAGjD,MAAM,mBAAmB,GAAG;IACxB,aAAa,EAAE,IAAI;IACnB,gBAAgB,EAAE,IAAI;IACtB,YAAY,EAAE,IAAI;IAClB,UAAU,EAAE,EAAE;IACd,aAAa,EAAE,EAAE;IACjB,SAAS,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,0BAA0B,GAAuB;IACnD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,WAAW;QACjB,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,eAAe;QACrB,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,SAAS;QACf,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,OAAO;QACb,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,cAAc;QACpB,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,cAAc;QACpB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,kBAAkB;QACxB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,eAAe;QACrB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,mBAAmB;QACzB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,uBAAuB;QAC7B,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,eAAe;QACrB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,gBAAgB;QACtB,MAAM,EAAE,0BAAQ;KACnB;IACD,GAAG,6BAAoB;CAC1B,CAAC;AAEF,MAAa,kBAAkB;IAA/B;QAEY,WAAM,GAAG,IAAA,8BAAY,EACzB,0BAA0B,EAC1B,mBAAmB,CACtB,CAAC;IAON,CAAC;IALG,WAAW,CAAC,OAAwB,EAAE,IAAkB;QACpD,MAAM,MAAM,GAAG,EAAS,CAAC;QACzB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;QACnC,OAAO,MAAsB,CAAC;IAClC,CAAC;;AAXL,gDAYC;AAXU,gCAAa,GAAG,QAAQ,AAAX,CAAY"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { Point3D } from '../../../types';
|
|
2
|
+
import type { CommonDxfEntity } from '../shared';
|
|
3
|
+
export interface SplineEntity extends CommonDxfEntity {
|
|
4
|
+
type: 'SPLINE';
|
|
5
|
+
subclassMarker: 'AcDbSpline';
|
|
6
|
+
normal?: Point3D;
|
|
7
|
+
flag: number;
|
|
8
|
+
degree: number;
|
|
9
|
+
numberOfKnots: number;
|
|
10
|
+
numberOfControlPoints: number;
|
|
11
|
+
numberOfFitPoints: number;
|
|
12
|
+
knotTolerance: number;
|
|
13
|
+
controlTolerance: number;
|
|
14
|
+
fitTolerance: number;
|
|
15
|
+
startTangent?: Point3D;
|
|
16
|
+
endTangent?: Point3D;
|
|
17
|
+
knots: number[];
|
|
18
|
+
weights?: number[];
|
|
19
|
+
controlPoints: Point3D[];
|
|
20
|
+
fitPoints: number[];
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/parser/entities/spline/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare enum TextGenerationFlag {
|
|
2
|
+
NONE = 0,
|
|
3
|
+
MIRRORED_X = 2,
|
|
4
|
+
MIRRORED_Y = 4
|
|
5
|
+
}
|
|
6
|
+
export declare enum TextHorizontalAlign {
|
|
7
|
+
LEFT = 0,
|
|
8
|
+
CENTER = 1,
|
|
9
|
+
RIGHT = 2,
|
|
10
|
+
ALIGNED = 3,
|
|
11
|
+
MIDDLE = 4,
|
|
12
|
+
FIT = 5
|
|
13
|
+
}
|
|
14
|
+
export declare enum TextVerticalAlign {
|
|
15
|
+
BASELINE = 0,
|
|
16
|
+
BOTTOM = 1,
|
|
17
|
+
MIDDLE = 2,
|
|
18
|
+
TOP = 3
|
|
19
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TextVerticalAlign = exports.TextHorizontalAlign = exports.TextGenerationFlag = void 0;
|
|
4
|
+
var TextGenerationFlag;
|
|
5
|
+
(function (TextGenerationFlag) {
|
|
6
|
+
TextGenerationFlag[TextGenerationFlag["NONE"] = 0] = "NONE";
|
|
7
|
+
TextGenerationFlag[TextGenerationFlag["MIRRORED_X"] = 2] = "MIRRORED_X";
|
|
8
|
+
TextGenerationFlag[TextGenerationFlag["MIRRORED_Y"] = 4] = "MIRRORED_Y";
|
|
9
|
+
})(TextGenerationFlag || (exports.TextGenerationFlag = TextGenerationFlag = {}));
|
|
10
|
+
var TextHorizontalAlign;
|
|
11
|
+
(function (TextHorizontalAlign) {
|
|
12
|
+
TextHorizontalAlign[TextHorizontalAlign["LEFT"] = 0] = "LEFT";
|
|
13
|
+
TextHorizontalAlign[TextHorizontalAlign["CENTER"] = 1] = "CENTER";
|
|
14
|
+
TextHorizontalAlign[TextHorizontalAlign["RIGHT"] = 2] = "RIGHT";
|
|
15
|
+
TextHorizontalAlign[TextHorizontalAlign["ALIGNED"] = 3] = "ALIGNED";
|
|
16
|
+
TextHorizontalAlign[TextHorizontalAlign["MIDDLE"] = 4] = "MIDDLE";
|
|
17
|
+
TextHorizontalAlign[TextHorizontalAlign["FIT"] = 5] = "FIT";
|
|
18
|
+
})(TextHorizontalAlign || (exports.TextHorizontalAlign = TextHorizontalAlign = {}));
|
|
19
|
+
var TextVerticalAlign;
|
|
20
|
+
(function (TextVerticalAlign) {
|
|
21
|
+
TextVerticalAlign[TextVerticalAlign["BASELINE"] = 0] = "BASELINE";
|
|
22
|
+
TextVerticalAlign[TextVerticalAlign["BOTTOM"] = 1] = "BOTTOM";
|
|
23
|
+
TextVerticalAlign[TextVerticalAlign["MIDDLE"] = 2] = "MIDDLE";
|
|
24
|
+
TextVerticalAlign[TextVerticalAlign["TOP"] = 3] = "TOP";
|
|
25
|
+
})(TextVerticalAlign || (exports.TextVerticalAlign = TextVerticalAlign = {}));
|
|
26
|
+
//# sourceMappingURL=consts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../../src/parser/entities/text/consts.ts"],"names":[],"mappings":";;;AAAA,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,2DAAQ,CAAA;IACR,uEAAc,CAAA;IACd,uEAAc,CAAA;AAClB,CAAC,EAJW,kBAAkB,kCAAlB,kBAAkB,QAI7B;AAED,IAAY,mBAOX;AAPD,WAAY,mBAAmB;IAC3B,6DAAQ,CAAA;IACR,iEAAU,CAAA;IACV,+DAAS,CAAA;IACT,mEAAW,CAAA;IACX,iEAAU,CAAA;IACV,2DAAO,CAAA;AACX,CAAC,EAPW,mBAAmB,mCAAnB,mBAAmB,QAO9B;AAED,IAAY,iBAKX;AALD,WAAY,iBAAiB;IACzB,iEAAY,CAAA;IACZ,6DAAU,CAAA;IACV,6DAAU,CAAA;IACV,uDAAO,CAAA;AACX,CAAC,EALW,iBAAiB,iCAAjB,iBAAiB,QAK5B"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
__exportStar(require("./consts"), exports);
|
|
19
|
+
__exportStar(require("./parser"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/parser/entities/text/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type DxfArrayScanner from '../../DxfArrayScanner';
|
|
2
|
+
import type { ScannerGroup } from '../../DxfArrayScanner';
|
|
3
|
+
import { DXFParserSnippet } from '../../shared/parserGenerator';
|
|
4
|
+
import { TextHorizontalAlign, TextVerticalAlign } from './consts';
|
|
5
|
+
import { TextEntity } from './types';
|
|
6
|
+
export declare const DefaultTextEntity: {
|
|
7
|
+
thickness: number;
|
|
8
|
+
rotation: number;
|
|
9
|
+
xScale: number;
|
|
10
|
+
obliqueAngle: number;
|
|
11
|
+
styleName: string;
|
|
12
|
+
generationFlag: number;
|
|
13
|
+
halign: TextHorizontalAlign;
|
|
14
|
+
valign: TextVerticalAlign;
|
|
15
|
+
extrusionDirection: {
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
z: number;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export declare const TextEntityParserSnippets: DXFParserSnippet[];
|
|
22
|
+
export declare class TextEntityParser {
|
|
23
|
+
static ForEntityName: string;
|
|
24
|
+
private parser;
|
|
25
|
+
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): TextEntity;
|
|
26
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TextEntityParser = exports.TextEntityParserSnippets = exports.DefaultTextEntity = void 0;
|
|
4
|
+
const parserGenerator_1 = require("../../shared/parserGenerator");
|
|
5
|
+
const shared_1 = require("../shared");
|
|
6
|
+
const consts_1 = require("./consts");
|
|
7
|
+
exports.DefaultTextEntity = {
|
|
8
|
+
thickness: 0,
|
|
9
|
+
rotation: 0,
|
|
10
|
+
xScale: 1,
|
|
11
|
+
obliqueAngle: 0,
|
|
12
|
+
styleName: 'STANDARD',
|
|
13
|
+
generationFlag: 0,
|
|
14
|
+
halign: consts_1.TextHorizontalAlign.LEFT,
|
|
15
|
+
valign: consts_1.TextVerticalAlign.BASELINE,
|
|
16
|
+
extrusionDirection: { x: 0, y: 0, z: 1 },
|
|
17
|
+
};
|
|
18
|
+
exports.TextEntityParserSnippets = [
|
|
19
|
+
{
|
|
20
|
+
code: 73,
|
|
21
|
+
name: 'valign',
|
|
22
|
+
parser: parserGenerator_1.Identity,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
// skip for duplicated AcDbText
|
|
26
|
+
code: 100,
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
code: 210,
|
|
30
|
+
name: 'extrusionDirection',
|
|
31
|
+
parser: parserGenerator_1.PointParser,
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
code: 11,
|
|
35
|
+
name: 'endPoint',
|
|
36
|
+
parser: parserGenerator_1.PointParser,
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
code: 72,
|
|
40
|
+
name: 'valign',
|
|
41
|
+
parser: parserGenerator_1.Identity,
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
code: 72,
|
|
45
|
+
name: 'halign',
|
|
46
|
+
parser: parserGenerator_1.Identity,
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
code: 71,
|
|
50
|
+
name: 'generationFlag',
|
|
51
|
+
parser: parserGenerator_1.Identity,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
code: 7,
|
|
55
|
+
name: 'styleName',
|
|
56
|
+
parser: parserGenerator_1.Identity,
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
code: 51,
|
|
60
|
+
name: 'obliqueAngle',
|
|
61
|
+
parser: parserGenerator_1.Identity,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
code: 41,
|
|
65
|
+
name: 'xScale',
|
|
66
|
+
parser: parserGenerator_1.Identity,
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
code: 50,
|
|
70
|
+
name: 'rotation',
|
|
71
|
+
parser: parserGenerator_1.Identity,
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
code: 1,
|
|
75
|
+
name: 'text',
|
|
76
|
+
parser: parserGenerator_1.Identity,
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
code: 40,
|
|
80
|
+
name: 'textHeight',
|
|
81
|
+
parser: parserGenerator_1.Identity,
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
code: 10,
|
|
85
|
+
name: 'startPoint',
|
|
86
|
+
parser: parserGenerator_1.PointParser,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
code: 39,
|
|
90
|
+
name: 'thickness',
|
|
91
|
+
parser: parserGenerator_1.Identity,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
code: 100,
|
|
95
|
+
name: 'subclassMarker',
|
|
96
|
+
parser: parserGenerator_1.Identity,
|
|
97
|
+
},
|
|
98
|
+
...shared_1.CommonEntitySnippets,
|
|
99
|
+
];
|
|
100
|
+
class TextEntityParser {
|
|
101
|
+
constructor() {
|
|
102
|
+
this.parser = (0, parserGenerator_1.createParser)(exports.TextEntityParserSnippets, exports.DefaultTextEntity);
|
|
103
|
+
}
|
|
104
|
+
parseEntity(scanner, curr) {
|
|
105
|
+
const entity = {};
|
|
106
|
+
this.parser(curr, scanner, entity);
|
|
107
|
+
return entity;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
exports.TextEntityParser = TextEntityParser;
|
|
111
|
+
TextEntityParser.ForEntityName = 'TEXT';
|
|
112
|
+
//# sourceMappingURL=parser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.js","sourceRoot":"","sources":["../../../../src/parser/entities/text/parser.ts"],"names":[],"mappings":";;;AAEA,kEAKsC;AACtC,sCAAiD;AACjD,qCAAkE;AAGrD,QAAA,iBAAiB,GAAG;IAC7B,SAAS,EAAE,CAAC;IACZ,QAAQ,EAAE,CAAC;IACX,MAAM,EAAE,CAAC;IACT,YAAY,EAAE,CAAC;IACf,SAAS,EAAE,UAAU;IACrB,cAAc,EAAE,CAAC;IACjB,MAAM,EAAE,4BAAmB,CAAC,IAAI;IAChC,MAAM,EAAE,0BAAiB,CAAC,QAAQ;IAClC,kBAAkB,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;CAC3C,CAAC;AAEW,QAAA,wBAAwB,GAAuB;IACxD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,+BAA+B;QAC/B,IAAI,EAAE,GAAG;KACZ;IACD;QACI,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,oBAAoB;QAC1B,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,UAAU;QAChB,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,gBAAgB;QACtB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,CAAC;QACP,IAAI,EAAE,WAAW;QACjB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,cAAc;QACpB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,UAAU;QAChB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,CAAC;QACP,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,6BAAW;KACtB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,WAAW;QACjB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,gBAAgB;QACtB,MAAM,EAAE,0BAAQ;KACnB;IACD,GAAG,6BAAoB;CAC1B,CAAC;AAEF,MAAa,gBAAgB;IAA7B;QAEY,WAAM,GAAG,IAAA,8BAAY,EAAC,gCAAwB,EAAE,yBAAiB,CAAC,CAAC;IAO/E,CAAC;IALG,WAAW,CAAC,OAAwB,EAAE,IAAkB;QACpD,MAAM,MAAM,GAAG,EAAS,CAAC;QACzB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;QACnC,OAAO,MAAoB,CAAC;IAChC,CAAC;;AARL,4CASC;AARU,8BAAa,GAAG,MAAM,AAAT,CAAU"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { Point3D } from '../../../types';
|
|
2
|
+
import type { CommonDxfEntity } from '../shared';
|
|
3
|
+
import { TextHorizontalAlign, TextVerticalAlign } from './consts';
|
|
4
|
+
export interface TextEntity extends CommonDxfEntity {
|
|
5
|
+
type: 'TEXT';
|
|
6
|
+
subclassMarker: 'AcDbText';
|
|
7
|
+
text: string;
|
|
8
|
+
thickness: number;
|
|
9
|
+
startPoint: Point3D;
|
|
10
|
+
endPoint: Point3D;
|
|
11
|
+
textHeight: number;
|
|
12
|
+
rotation: number;
|
|
13
|
+
xScale: number;
|
|
14
|
+
obliqueAngle: number;
|
|
15
|
+
styleName: string;
|
|
16
|
+
generationFlag: number;
|
|
17
|
+
halign: TextHorizontalAlign;
|
|
18
|
+
valign: TextVerticalAlign;
|
|
19
|
+
extrusionDirection: Point3D;
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/parser/entities/text/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.VertexFlag = void 0;
|
|
4
|
+
var VertexFlag;
|
|
5
|
+
(function (VertexFlag) {
|
|
6
|
+
VertexFlag[VertexFlag["CREATED_BY_CURVE_FIT"] = 1] = "CREATED_BY_CURVE_FIT";
|
|
7
|
+
VertexFlag[VertexFlag["TANGENT_DEFINED"] = 2] = "TANGENT_DEFINED";
|
|
8
|
+
VertexFlag[VertexFlag["NOT_USED"] = 4] = "NOT_USED";
|
|
9
|
+
VertexFlag[VertexFlag["CREATED_BY_SPLINE_FIT"] = 8] = "CREATED_BY_SPLINE_FIT";
|
|
10
|
+
VertexFlag[VertexFlag["SPLINE_CONTROL_POINT"] = 16] = "SPLINE_CONTROL_POINT";
|
|
11
|
+
VertexFlag[VertexFlag["FOR_POLYLINE"] = 32] = "FOR_POLYLINE";
|
|
12
|
+
VertexFlag[VertexFlag["FOR_POLYGON"] = 64] = "FOR_POLYGON";
|
|
13
|
+
VertexFlag[VertexFlag["POLYFACE"] = 128] = "POLYFACE";
|
|
14
|
+
})(VertexFlag || (exports.VertexFlag = VertexFlag = {}));
|
|
15
|
+
//# sourceMappingURL=consts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../../src/parser/entities/vertex/consts.ts"],"names":[],"mappings":";;;AAAA,IAAY,UASX;AATD,WAAY,UAAU;IAClB,2EAAwB,CAAA;IACxB,iEAAmB,CAAA;IACnB,mDAAY,CAAA;IACZ,6EAAyB,CAAA;IACzB,4EAAyB,CAAA;IACzB,4DAAiB,CAAA;IACjB,0DAAgB,CAAA;IAChB,qDAAc,CAAA;AAClB,CAAC,EATW,UAAU,0BAAV,UAAU,QASrB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
__exportStar(require("./consts"), exports);
|
|
19
|
+
__exportStar(require("./parser"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/parser/entities/vertex/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type DxfArrayScanner from '../../DxfArrayScanner';
|
|
2
|
+
import type { ScannerGroup } from '../../DxfArrayScanner';
|
|
3
|
+
import { VertexEntity } from './types';
|
|
4
|
+
export declare class VertexParser {
|
|
5
|
+
static ForEntityName: string;
|
|
6
|
+
private parser;
|
|
7
|
+
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): VertexEntity;
|
|
8
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.VertexParser = void 0;
|
|
4
|
+
const utils_1 = require("../../../utils");
|
|
5
|
+
const parserGenerator_1 = require("../../shared/parserGenerator");
|
|
6
|
+
const shared_1 = require("../shared");
|
|
7
|
+
const DefaultVertexEntity = {
|
|
8
|
+
startWidth: 0,
|
|
9
|
+
endWidth: 0,
|
|
10
|
+
bulge: 0,
|
|
11
|
+
};
|
|
12
|
+
const VertextParserSnippets = [
|
|
13
|
+
{
|
|
14
|
+
code: 91,
|
|
15
|
+
name: 'id',
|
|
16
|
+
parser: parserGenerator_1.Identity,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
code: [...(0, utils_1.generateIntegers)(71, 75)],
|
|
20
|
+
name: 'faces',
|
|
21
|
+
isMultiple: true, // isMultiple이 참이면 code가 달라도 동일한 곳에 넣어줌
|
|
22
|
+
parser: parserGenerator_1.Identity,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
code: 50,
|
|
26
|
+
name: 'tangentDirection',
|
|
27
|
+
parser: parserGenerator_1.Identity,
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
code: 70,
|
|
31
|
+
name: 'flag',
|
|
32
|
+
parser: parserGenerator_1.Identity,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
code: 42,
|
|
36
|
+
name: 'bulge',
|
|
37
|
+
parser: parserGenerator_1.Identity,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
code: 41,
|
|
41
|
+
name: 'endWidth',
|
|
42
|
+
parser: parserGenerator_1.Identity,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
code: 40,
|
|
46
|
+
name: 'startWidth',
|
|
47
|
+
parser: parserGenerator_1.Identity,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
code: 30,
|
|
51
|
+
name: 'z',
|
|
52
|
+
parser: parserGenerator_1.Identity,
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
code: 20,
|
|
56
|
+
name: 'y',
|
|
57
|
+
parser: parserGenerator_1.Identity,
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
code: 10,
|
|
61
|
+
name: 'x',
|
|
62
|
+
parser: parserGenerator_1.Identity,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
code: 100,
|
|
66
|
+
name: 'subclassMarker',
|
|
67
|
+
parser: parserGenerator_1.Identity,
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
code: 100, // skip for AcDbVertex
|
|
71
|
+
},
|
|
72
|
+
...shared_1.CommonEntitySnippets,
|
|
73
|
+
];
|
|
74
|
+
class VertexParser {
|
|
75
|
+
constructor() {
|
|
76
|
+
this.parser = (0, parserGenerator_1.createParser)(VertextParserSnippets, DefaultVertexEntity);
|
|
77
|
+
}
|
|
78
|
+
parseEntity(scanner, curr) {
|
|
79
|
+
const entity = {};
|
|
80
|
+
this.parser(curr, scanner, entity);
|
|
81
|
+
return entity;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
exports.VertexParser = VertexParser;
|
|
85
|
+
VertexParser.ForEntityName = 'VERTEX';
|
|
86
|
+
//# sourceMappingURL=parser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.js","sourceRoot":"","sources":["../../../../src/parser/entities/vertex/parser.ts"],"names":[],"mappings":";;;AAAA,0CAAkD;AAGlD,kEAIsC;AACtC,sCAAiD;AAGjD,MAAM,mBAAmB,GAAG;IACxB,UAAU,EAAE,CAAC;IACb,QAAQ,EAAE,CAAC;IACX,KAAK,EAAE,CAAC;CACX,CAAC;AAEF,MAAM,qBAAqB,GAAuB;IAC9C;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,IAAI;QACV,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,CAAC,GAAG,IAAA,wBAAgB,EAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QACnC,IAAI,EAAE,OAAO;QACb,UAAU,EAAE,IAAI,EAAE,uCAAuC;QACzD,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,kBAAkB;QACxB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,OAAO;QACb,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,UAAU;QAChB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,GAAG;QACT,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,GAAG;QACT,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,GAAG;QACT,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,gBAAgB;QACtB,MAAM,EAAE,0BAAQ;KACnB;IACD;QACI,IAAI,EAAE,GAAG,EAAE,sBAAsB;KACpC;IACD,GAAG,6BAAoB;CAC1B,CAAC;AAEF,MAAa,YAAY;IAAzB;QAEY,WAAM,GAAG,IAAA,8BAAY,EAAC,qBAAqB,EAAE,mBAAmB,CAAC,CAAC;IAO9E,CAAC;IALG,WAAW,CAAC,OAAwB,EAAE,IAAkB;QACpD,MAAM,MAAM,GAAG,EAAS,CAAC;QACzB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;QACnC,OAAO,MAAsB,CAAC;IAClC,CAAC;;AARL,oCASC;AARU,0BAAa,GAAG,QAAQ,AAAX,CAAY"}
|