dxf-json 0.10.0 → 0.11.0
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/Readme.md +67 -18
- package/dist/cjs/bundle.cjs +3 -0
- package/dist/cjs/types/consts/block.d.ts.map +1 -0
- package/dist/cjs/types/consts/color.d.ts.map +1 -0
- package/dist/cjs/types/consts/config.d.ts.map +1 -0
- package/dist/cjs/types/consts/dimension.d.ts +166 -0
- package/dist/cjs/types/consts/dimension.d.ts.map +1 -0
- package/dist/cjs/types/consts/hatch.d.ts.map +1 -0
- package/dist/cjs/types/consts/header.d.ts +10 -0
- package/dist/cjs/types/consts/header.d.ts.map +1 -0
- package/dist/cjs/types/consts/lineweight.d.ts.map +1 -0
- package/dist/cjs/types/consts/measurement.d.ts.map +1 -0
- package/dist/cjs/types/consts/obscuredLineTypes.d.ts.map +1 -0
- package/dist/cjs/types/consts/plotStyleType.d.ts.map +1 -0
- package/dist/cjs/types/consts/viewport.d.ts +58 -0
- package/dist/cjs/types/consts/viewport.d.ts.map +1 -0
- package/dist/cjs/types/debug.d.ts.map +1 -0
- package/dist/cjs/types/index.d.ts +174 -0
- package/dist/cjs/types/index.d.ts.map +1 -0
- package/dist/cjs/types/parser/AutoCadColorIndex.d.ts.map +1 -0
- package/dist/cjs/types/parser/DxfArrayScanner.d.ts.map +1 -0
- package/dist/cjs/types/parser/DxfParser.d.ts +29 -0
- package/dist/cjs/types/parser/DxfParser.d.ts.map +1 -0
- package/dist/cjs/types/parser/ParseHelpers.d.ts +8 -0
- package/dist/cjs/types/parser/ParseHelpers.d.ts.map +1 -0
- package/dist/cjs/types/parser/blocks/parser.d.ts +4 -0
- package/dist/cjs/types/parser/blocks/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/blocks/types.d.ts +15 -0
- package/dist/cjs/types/parser/blocks/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/classes/consts.d.ts +18 -0
- package/dist/cjs/types/parser/classes/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/classes/parser.d.ts +6 -0
- package/dist/cjs/types/parser/classes/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/classes/types.d.ts +60 -0
- package/dist/cjs/types/parser/classes/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/arc/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc/types.d.ts +13 -0
- package/dist/cjs/types/parser/entities/arc/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts +9 -0
- package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts +99 -0
- package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attdef/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attdef/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/attdef/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attdef/types.d.ts +18 -0
- package/dist/cjs/types/parser/entities/attdef/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attribute/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/attribute/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attribute/types.d.ts +31 -0
- package/dist/cjs/types/parser/entities/attribute/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/body/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/body/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/body/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/body/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/circle/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/circle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/circle/types.d.ts +11 -0
- package/dist/cjs/types/parser/entities/circle/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/consts.d.ts +5 -0
- package/dist/cjs/types/parser/entities/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/dimension/parser.d.ts +14 -0
- package/dist/cjs/types/parser/entities/dimension/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/dimension/types.d.ts +202 -0
- package/dist/cjs/types/parser/entities/dimension/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ellipse/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/ellipse/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ellipse/types.d.ts +13 -0
- package/dist/cjs/types/parser/entities/ellipse/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/face/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/face/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/face/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/face/types.d.ts +8 -0
- package/dist/cjs/types/parser/entities/face/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/hatch/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/patternData.d.ts +3 -0
- package/dist/cjs/types/parser/entities/hatch/patternData.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
- package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
- package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts +39 -0
- package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/image/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/image/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/image/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/image/types.d.ts +55 -0
- package/dist/cjs/types/parser/entities/image/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/insert/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/insert/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/insert/types.d.ts +19 -0
- package/dist/cjs/types/parser/entities/insert/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/leader/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/leader/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/leader/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/leader/types.d.ts +24 -0
- package/dist/cjs/types/parser/entities/leader/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/light/consts.d.ts +11 -0
- package/dist/cjs/types/parser/entities/light/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/light/parser.d.ts +10 -0
- package/dist/cjs/types/parser/entities/light/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/light/types.d.ts +69 -0
- package/dist/cjs/types/parser/entities/light/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/line/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/line/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/line/types.d.ts +11 -0
- package/dist/cjs/types/parser/entities/line/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts +20 -0
- package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mesh/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/mesh/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mesh/types.d.ts +23 -0
- package/dist/cjs/types/parser/entities/mesh/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mline/parser.d.ts +12 -0
- package/dist/cjs/types/parser/entities/mline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mline/types.d.ts +151 -0
- package/dist/cjs/types/parser/entities/mline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mtext/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mtext/parser.d.ts +10 -0
- package/dist/cjs/types/parser/entities/mtext/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mtext/types.d.ts +34 -0
- package/dist/cjs/types/parser/entities/mtext/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/multileader/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/multileader/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/multileader/types.d.ts +35 -0
- package/dist/cjs/types/parser/entities/multileader/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/point/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/point/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/point/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/point/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/polyline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/polyline/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/polyline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/polyline/types.d.ts +20 -0
- package/dist/cjs/types/parser/entities/polyline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ray/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/ray/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ray/types.d.ts +11 -0
- package/dist/cjs/types/parser/entities/ray/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/region/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/region/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/region/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/region/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/section/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/section/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/section/types.d.ts +20 -0
- package/dist/cjs/types/parser/entities/section/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/shared.d.ts +82 -0
- package/dist/cjs/types/parser/entities/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/solid/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/solid/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid3d/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/solid3d/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid3d/types.d.ts +12 -0
- package/dist/cjs/types/parser/entities/solid3d/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/spline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/spline/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/spline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/spline/types.d.ts +22 -0
- package/dist/cjs/types/parser/entities/spline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/sun/parser.d.ts +10 -0
- package/dist/cjs/types/parser/entities/sun/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/sun/types.d.ts +80 -0
- package/dist/cjs/types/parser/entities/sun/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/text/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/text/parser.d.ts +26 -0
- package/dist/cjs/types/parser/entities/text/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/text/types.d.ts +21 -0
- package/dist/cjs/types/parser/entities/text/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/tolerance/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/tolerance/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/tolerance/types.d.ts +17 -0
- package/dist/cjs/types/parser/entities/tolerance/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/vertex/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/vertex/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/vertex/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/vertex/types.d.ts +17 -0
- package/dist/cjs/types/parser/entities/vertex/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/viewport/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/viewport/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/viewport/types.d.ts +187 -0
- package/dist/cjs/types/parser/entities/viewport/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/wipeout/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/wipeout/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/wipeout/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/wipeout/types.d.ts +38 -0
- package/dist/cjs/types/parser/entities/wipeout/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/xline/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/xline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/xline/types.d.ts +9 -0
- package/dist/cjs/types/parser/entities/xline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/getAcadColor.d.ts +8 -0
- package/dist/cjs/types/parser/getAcadColor.d.ts.map +1 -0
- package/dist/cjs/types/parser/header/parser.d.ts +3 -0
- package/dist/cjs/types/parser/header/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/dictionary/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/dictionary/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/dictionary/types.d.ts +13 -0
- package/dist/cjs/types/parser/objects/dictionary/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layout/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layout/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/layout/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layout/types.d.ts +25 -0
- package/dist/cjs/types/parser/objects/layout/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/parser.d.ts +5 -0
- package/dist/cjs/types/parser/objects/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/plotSettings/types.d.ts +37 -0
- package/dist/cjs/types/parser/objects/plotSettings/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/shared.d.ts +3 -0
- package/dist/cjs/types/parser/objects/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts +39 -0
- package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/types.d.ts +29 -0
- package/dist/cjs/types/parser/objects/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/xrecord/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/xrecord/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/xrecord/types.d.ts +16 -0
- package/dist/cjs/types/parser/objects/xrecord/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/ensureHandle.d.ts +2 -0
- package/dist/cjs/types/parser/shared/ensureHandle.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/extensions/parser.d.ts +4 -0
- package/dist/cjs/types/parser/shared/extensions/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/isMatched.d.ts +7 -0
- package/dist/cjs/types/parser/shared/isMatched.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/parsePoint.d.ts +8 -0
- package/dist/cjs/types/parser/shared/parsePoint.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/parserGenerator.d.ts +50 -0
- package/dist/cjs/types/parser/shared/parserGenerator.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/xdata/parser.d.ts +6 -0
- package/dist/cjs/types/parser/shared/xdata/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/xdata/types.d.ts +16 -0
- package/dist/cjs/types/parser/shared/xdata/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/appId/parser.d.ts +4 -0
- package/dist/cjs/types/parser/tables/appId/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/appId/types.d.ts +20 -0
- package/dist/cjs/types/parser/tables/appId/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/blockRecord/types.d.ts +11 -0
- package/dist/cjs/types/parser/tables/blockRecord/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/consts.d.ts +38 -0
- package/dist/cjs/types/parser/tables/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts +3 -0
- package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/dimStyle/types.d.ts +912 -0
- package/dist/cjs/types/parser/tables/dimStyle/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/layer/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/layer/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/layer/types.d.ts +14 -0
- package/dist/cjs/types/parser/tables/layer/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ltype/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ltype/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/ltype/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ltype/types.d.ts +22 -0
- package/dist/cjs/types/parser/tables/ltype/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/parser.d.ts +3 -0
- package/dist/cjs/types/parser/tables/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/shared.d.ts +3 -0
- package/dist/cjs/types/parser/tables/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/style/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/style/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/style/types.d.ts +15 -0
- package/dist/cjs/types/parser/tables/style/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/types.d.ts +14 -0
- package/dist/cjs/types/parser/tables/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ucs/parser.d.ts +4 -0
- package/dist/cjs/types/parser/tables/ucs/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ucs/types.d.ts +127 -0
- package/dist/cjs/types/parser/tables/ucs/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/view/consts.d.ts +4 -0
- package/dist/cjs/types/parser/tables/view/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/view/parser.d.ts +4 -0
- package/dist/cjs/types/parser/tables/view/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/view/types.d.ts +140 -0
- package/dist/cjs/types/parser/tables/view/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/vport/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/vport/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/vport/types.d.ts +44 -0
- package/dist/cjs/types/parser/tables/vport/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/thumbnailImage/parser.d.ts +6 -0
- package/dist/cjs/types/parser/thumbnailImage/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/types.d.ts +35 -0
- package/dist/cjs/types/parser/types.d.ts.map +1 -0
- package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts +44 -0
- package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
- package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts +20 -0
- package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
- package/dist/cjs/types/types/color.d.ts +4 -0
- package/dist/cjs/types/types/color.d.ts.map +1 -0
- package/dist/cjs/types/types/dxfHeader.d.ts +17 -0
- package/dist/cjs/types/types/dxfHeader.d.ts.map +1 -0
- package/dist/cjs/types/types/shared.d.ts +22 -0
- package/dist/cjs/types/types/shared.d.ts.map +1 -0
- package/dist/cjs/types/utlis.d.ts +18 -0
- package/dist/cjs/types/utlis.d.ts.map +1 -0
- package/dist/esm/bundle.mjs +3 -0
- package/dist/esm/types/consts/block.d.ts +11 -0
- package/dist/esm/types/consts/block.d.ts.map +1 -0
- package/dist/esm/types/consts/color.d.ts +6 -0
- package/dist/esm/types/consts/color.d.ts.map +1 -0
- package/dist/esm/types/consts/config.d.ts +3 -0
- package/dist/esm/types/consts/config.d.ts.map +1 -0
- package/dist/esm/types/consts/dimension.d.ts +166 -0
- package/dist/esm/types/consts/dimension.d.ts.map +1 -0
- package/dist/esm/types/consts/hatch.d.ts +45 -0
- package/dist/esm/types/consts/hatch.d.ts.map +1 -0
- package/dist/esm/types/consts/header.d.ts +10 -0
- package/dist/esm/types/consts/header.d.ts.map +1 -0
- package/dist/esm/types/consts/lineweight.d.ts +6 -0
- package/dist/esm/types/consts/lineweight.d.ts.map +1 -0
- package/dist/esm/types/consts/measurement.d.ts +5 -0
- package/dist/esm/types/consts/measurement.d.ts.map +1 -0
- package/dist/esm/types/consts/obscuredLineTypes.d.ts +22 -0
- package/dist/esm/types/consts/obscuredLineTypes.d.ts.map +1 -0
- package/dist/esm/types/consts/plotStyleType.d.ts +14 -0
- package/dist/esm/types/consts/plotStyleType.d.ts.map +1 -0
- package/dist/esm/types/consts/viewport.d.ts +58 -0
- package/dist/esm/types/consts/viewport.d.ts.map +1 -0
- package/dist/esm/types/debug.d.ts +4 -0
- package/dist/esm/types/debug.d.ts.map +1 -0
- package/dist/esm/types/index.d.ts +174 -0
- package/dist/esm/types/index.d.ts.map +1 -0
- package/dist/esm/types/parser/AutoCadColorIndex.d.ts +9 -0
- package/dist/esm/types/parser/AutoCadColorIndex.d.ts.map +1 -0
- package/dist/esm/types/parser/DxfArrayScanner.d.ts +49 -0
- package/dist/esm/types/parser/DxfArrayScanner.d.ts.map +1 -0
- package/dist/esm/types/parser/DxfParser.d.ts +29 -0
- package/dist/esm/types/parser/DxfParser.d.ts.map +1 -0
- package/dist/esm/types/parser/ParseHelpers.d.ts +8 -0
- package/dist/esm/types/parser/ParseHelpers.d.ts.map +1 -0
- package/dist/esm/types/parser/blocks/parser.d.ts +4 -0
- package/dist/esm/types/parser/blocks/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/blocks/types.d.ts +15 -0
- package/dist/esm/types/parser/blocks/types.d.ts.map +1 -0
- package/dist/esm/types/parser/classes/consts.d.ts +18 -0
- package/dist/esm/types/parser/classes/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/classes/parser.d.ts +6 -0
- package/dist/esm/types/parser/classes/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/classes/types.d.ts +60 -0
- package/dist/esm/types/parser/classes/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/arc/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc/types.d.ts +13 -0
- package/dist/esm/types/parser/entities/arc/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts +13 -0
- package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts +9 -0
- package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc_dimension/types.d.ts +99 -0
- package/dist/esm/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attdef/consts.d.ts +12 -0
- package/dist/esm/types/parser/entities/attdef/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attdef/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/attdef/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attdef/types.d.ts +18 -0
- package/dist/esm/types/parser/entities/attdef/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attribute/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/attribute/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attribute/types.d.ts +31 -0
- package/dist/esm/types/parser/entities/attribute/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/body/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/body/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/body/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/body/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/circle/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/circle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/circle/types.d.ts +11 -0
- package/dist/esm/types/parser/entities/circle/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/consts.d.ts +5 -0
- package/dist/esm/types/parser/entities/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/dimension/parser.d.ts +14 -0
- package/dist/esm/types/parser/entities/dimension/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/dimension/types.d.ts +202 -0
- package/dist/esm/types/parser/entities/dimension/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ellipse/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/ellipse/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ellipse/types.d.ts +13 -0
- package/dist/esm/types/parser/entities/ellipse/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/face/consts.d.ts +7 -0
- package/dist/esm/types/parser/entities/face/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/face/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/face/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/face/types.d.ts +8 -0
- package/dist/esm/types/parser/entities/face/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/hatch/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/patternData.d.ts +3 -0
- package/dist/esm/types/parser/entities/hatch/patternData.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
- package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
- package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts +39 -0
- package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/image/consts.d.ts +15 -0
- package/dist/esm/types/parser/entities/image/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/image/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/image/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/image/types.d.ts +55 -0
- package/dist/esm/types/parser/entities/image/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/insert/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/insert/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/insert/types.d.ts +19 -0
- package/dist/esm/types/parser/entities/insert/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/leader/consts.d.ts +7 -0
- package/dist/esm/types/parser/entities/leader/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/leader/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/leader/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/leader/types.d.ts +24 -0
- package/dist/esm/types/parser/entities/leader/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/light/consts.d.ts +11 -0
- package/dist/esm/types/parser/entities/light/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/light/parser.d.ts +10 -0
- package/dist/esm/types/parser/entities/light/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/light/types.d.ts +69 -0
- package/dist/esm/types/parser/entities/light/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/line/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/line/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/line/types.d.ts +11 -0
- package/dist/esm/types/parser/entities/line/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts +5 -0
- package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/lwpolyline/types.d.ts +20 -0
- package/dist/esm/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mesh/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/mesh/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mesh/types.d.ts +23 -0
- package/dist/esm/types/parser/entities/mesh/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mline/consts.d.ts +12 -0
- package/dist/esm/types/parser/entities/mline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mline/parser.d.ts +12 -0
- package/dist/esm/types/parser/entities/mline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mline/types.d.ts +151 -0
- package/dist/esm/types/parser/entities/mline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mtext/consts.d.ts +6 -0
- package/dist/esm/types/parser/entities/mtext/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mtext/parser.d.ts +10 -0
- package/dist/esm/types/parser/entities/mtext/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mtext/types.d.ts +34 -0
- package/dist/esm/types/parser/entities/mtext/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/multileader/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/multileader/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/multileader/types.d.ts +35 -0
- package/dist/esm/types/parser/entities/multileader/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/point/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/point/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/point/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/point/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/polyline/consts.d.ts +17 -0
- package/dist/esm/types/parser/entities/polyline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/polyline/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/polyline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/polyline/types.d.ts +20 -0
- package/dist/esm/types/parser/entities/polyline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ray/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/ray/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ray/types.d.ts +11 -0
- package/dist/esm/types/parser/entities/ray/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/region/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/region/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/region/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/region/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/section/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/section/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/section/types.d.ts +20 -0
- package/dist/esm/types/parser/entities/section/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/shared.d.ts +82 -0
- package/dist/esm/types/parser/entities/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/solid/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/solid/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid3d/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/solid3d/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid3d/types.d.ts +12 -0
- package/dist/esm/types/parser/entities/solid3d/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/spline/consts.d.ts +9 -0
- package/dist/esm/types/parser/entities/spline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/spline/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/spline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/spline/types.d.ts +22 -0
- package/dist/esm/types/parser/entities/spline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/sun/parser.d.ts +10 -0
- package/dist/esm/types/parser/entities/sun/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/sun/types.d.ts +80 -0
- package/dist/esm/types/parser/entities/sun/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/text/consts.d.ts +20 -0
- package/dist/esm/types/parser/entities/text/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/text/parser.d.ts +26 -0
- package/dist/esm/types/parser/entities/text/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/text/types.d.ts +21 -0
- package/dist/esm/types/parser/entities/text/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/tolerance/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/tolerance/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/tolerance/types.d.ts +17 -0
- package/dist/esm/types/parser/entities/tolerance/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/vertex/consts.d.ts +11 -0
- package/dist/esm/types/parser/entities/vertex/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/vertex/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/vertex/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/vertex/types.d.ts +17 -0
- package/dist/esm/types/parser/entities/vertex/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/viewport/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/viewport/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/viewport/types.d.ts +187 -0
- package/dist/esm/types/parser/entities/viewport/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/wipeout/consts.d.ts +7 -0
- package/dist/esm/types/parser/entities/wipeout/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/wipeout/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/wipeout/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/wipeout/types.d.ts +38 -0
- package/dist/esm/types/parser/entities/wipeout/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/xline/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/xline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/xline/types.d.ts +9 -0
- package/dist/esm/types/parser/entities/xline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/getAcadColor.d.ts +8 -0
- package/dist/esm/types/parser/getAcadColor.d.ts.map +1 -0
- package/dist/esm/types/parser/header/parser.d.ts +3 -0
- package/dist/esm/types/parser/header/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/consts.d.ts +15 -0
- package/dist/esm/types/parser/objects/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/dictionary/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/dictionary/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/dictionary/types.d.ts +13 -0
- package/dist/esm/types/parser/objects/dictionary/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layout/consts.d.ts +5 -0
- package/dist/esm/types/parser/objects/layout/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layout/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/layout/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layout/types.d.ts +25 -0
- package/dist/esm/types/parser/objects/layout/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/parser.d.ts +5 -0
- package/dist/esm/types/parser/objects/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/plotSettings/consts.d.ts +28 -0
- package/dist/esm/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/plotSettings/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/plotSettings/types.d.ts +37 -0
- package/dist/esm/types/parser/objects/plotSettings/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/shared.d.ts +3 -0
- package/dist/esm/types/parser/objects/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/spatial_filter/types.d.ts +39 -0
- package/dist/esm/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/types.d.ts +29 -0
- package/dist/esm/types/parser/objects/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/xrecord/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/xrecord/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/xrecord/types.d.ts +16 -0
- package/dist/esm/types/parser/objects/xrecord/types.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/ensureHandle.d.ts +2 -0
- package/dist/esm/types/parser/shared/ensureHandle.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/extensions/parser.d.ts +4 -0
- package/dist/esm/types/parser/shared/extensions/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/isMatched.d.ts +7 -0
- package/dist/esm/types/parser/shared/isMatched.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/parsePoint.d.ts +8 -0
- package/dist/esm/types/parser/shared/parsePoint.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/parserGenerator.d.ts +50 -0
- package/dist/esm/types/parser/shared/parserGenerator.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/xdata/parser.d.ts +6 -0
- package/dist/esm/types/parser/shared/xdata/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/xdata/types.d.ts +16 -0
- package/dist/esm/types/parser/shared/xdata/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/appId/parser.d.ts +4 -0
- package/dist/esm/types/parser/tables/appId/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/appId/types.d.ts +20 -0
- package/dist/esm/types/parser/tables/appId/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/blockRecord/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/blockRecord/types.d.ts +11 -0
- package/dist/esm/types/parser/tables/blockRecord/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/consts.d.ts +38 -0
- package/dist/esm/types/parser/tables/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/dimStyle/consts.d.ts +3 -0
- package/dist/esm/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/dimStyle/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/dimStyle/types.d.ts +912 -0
- package/dist/esm/types/parser/tables/dimStyle/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/layer/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/layer/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/layer/types.d.ts +14 -0
- package/dist/esm/types/parser/tables/layer/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ltype/consts.d.ts +7 -0
- package/dist/esm/types/parser/tables/ltype/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ltype/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/ltype/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ltype/types.d.ts +22 -0
- package/dist/esm/types/parser/tables/ltype/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/parser.d.ts +3 -0
- package/dist/esm/types/parser/tables/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/shared.d.ts +3 -0
- package/dist/esm/types/parser/tables/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/style/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/style/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/style/types.d.ts +15 -0
- package/dist/esm/types/parser/tables/style/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/types.d.ts +14 -0
- package/dist/esm/types/parser/tables/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ucs/parser.d.ts +4 -0
- package/dist/esm/types/parser/tables/ucs/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ucs/types.d.ts +127 -0
- package/dist/esm/types/parser/tables/ucs/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/view/consts.d.ts +4 -0
- package/dist/esm/types/parser/tables/view/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/view/parser.d.ts +4 -0
- package/dist/esm/types/parser/tables/view/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/view/types.d.ts +140 -0
- package/dist/esm/types/parser/tables/view/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/vport/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/vport/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/vport/types.d.ts +44 -0
- package/dist/esm/types/parser/tables/vport/types.d.ts.map +1 -0
- package/dist/esm/types/parser/thumbnailImage/parser.d.ts +6 -0
- package/dist/esm/types/parser/thumbnailImage/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/types.d.ts +35 -0
- package/dist/esm/types/parser/types.d.ts.map +1 -0
- package/dist/esm/types/stream-parser/DxfStreamParser.d.ts +44 -0
- package/dist/esm/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
- package/dist/esm/types/stream-parser/streamShared/parseData.d.ts +20 -0
- package/dist/esm/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
- package/dist/esm/types/types/color.d.ts +4 -0
- package/dist/esm/types/types/color.d.ts.map +1 -0
- package/dist/esm/types/types/dxfHeader.d.ts +17 -0
- package/dist/esm/types/types/dxfHeader.d.ts.map +1 -0
- package/dist/esm/types/types/shared.d.ts +22 -0
- package/dist/esm/types/types/shared.d.ts.map +1 -0
- package/dist/esm/types/utlis.d.ts +18 -0
- package/dist/esm/types/utlis.d.ts.map +1 -0
- package/package.json +15 -14
- package/dist/bundle.cjs +0 -3
- package/dist/bundle.mjs +0 -3
- package/dist/types/consts/block.d.ts.map +0 -1
- package/dist/types/consts/color.d.ts.map +0 -1
- package/dist/types/consts/config.d.ts.map +0 -1
- package/dist/types/consts/dimension.d.ts +0 -77
- package/dist/types/consts/dimension.d.ts.map +0 -1
- package/dist/types/consts/hatch.d.ts.map +0 -1
- package/dist/types/consts/header.d.ts +0 -10
- package/dist/types/consts/header.d.ts.map +0 -1
- package/dist/types/consts/index.d.ts +0 -13
- package/dist/types/consts/index.d.ts.map +0 -1
- package/dist/types/consts/lineweight.d.ts.map +0 -1
- package/dist/types/consts/measurement.d.ts.map +0 -1
- package/dist/types/consts/obscuredLineTypes.d.ts.map +0 -1
- package/dist/types/consts/plotStyleType.d.ts.map +0 -1
- package/dist/types/consts/scene.d.ts +0 -3
- package/dist/types/consts/scene.d.ts.map +0 -1
- package/dist/types/consts/viewport.d.ts +0 -53
- package/dist/types/consts/viewport.d.ts.map +0 -1
- package/dist/types/index.d.ts +0 -8
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/parser/AutoCadColorIndex.d.ts.map +0 -1
- package/dist/types/parser/DxfArrayScanner.d.ts.map +0 -1
- package/dist/types/parser/DxfParser.d.ts +0 -22
- package/dist/types/parser/DxfParser.d.ts.map +0 -1
- package/dist/types/parser/ParseHelpers.d.ts +0 -16
- package/dist/types/parser/ParseHelpers.d.ts.map +0 -1
- package/dist/types/parser/blocks/index.d.ts +0 -5
- package/dist/types/parser/blocks/index.d.ts.map +0 -1
- package/dist/types/parser/blocks/types.d.ts +0 -15
- package/dist/types/parser/blocks/types.d.ts.map +0 -1
- package/dist/types/parser/entities/arc/index.d.ts +0 -3
- package/dist/types/parser/entities/arc/index.d.ts.map +0 -1
- package/dist/types/parser/entities/arc/parser.d.ts +0 -7
- package/dist/types/parser/entities/arc/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/arc/types.d.ts +0 -13
- package/dist/types/parser/entities/arc/types.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/index.d.ts +0 -4
- package/dist/types/parser/entities/arc_dimension/index.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/parser.d.ts +0 -9
- package/dist/types/parser/entities/arc_dimension/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/types.d.ts +0 -99
- package/dist/types/parser/entities/arc_dimension/types.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/index.d.ts +0 -4
- package/dist/types/parser/entities/attdef/index.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/parser.d.ts +0 -8
- package/dist/types/parser/entities/attdef/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/types.d.ts +0 -18
- package/dist/types/parser/entities/attdef/types.d.ts.map +0 -1
- package/dist/types/parser/entities/attribute/index.d.ts +0 -3
- package/dist/types/parser/entities/attribute/index.d.ts.map +0 -1
- package/dist/types/parser/entities/attribute/parser.d.ts +0 -8
- package/dist/types/parser/entities/attribute/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/attribute/types.d.ts +0 -31
- package/dist/types/parser/entities/attribute/types.d.ts.map +0 -1
- package/dist/types/parser/entities/body/index.d.ts +0 -3
- package/dist/types/parser/entities/body/index.d.ts.map +0 -1
- package/dist/types/parser/entities/body/parser.d.ts +0 -8
- package/dist/types/parser/entities/body/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/body/types.d.ts +0 -10
- package/dist/types/parser/entities/body/types.d.ts.map +0 -1
- package/dist/types/parser/entities/circle/index.d.ts +0 -3
- package/dist/types/parser/entities/circle/index.d.ts.map +0 -1
- package/dist/types/parser/entities/circle/parser.d.ts +0 -8
- package/dist/types/parser/entities/circle/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/circle/types.d.ts +0 -11
- package/dist/types/parser/entities/circle/types.d.ts.map +0 -1
- package/dist/types/parser/entities/dimension/index.d.ts +0 -3
- package/dist/types/parser/entities/dimension/index.d.ts.map +0 -1
- package/dist/types/parser/entities/dimension/parser.d.ts +0 -14
- package/dist/types/parser/entities/dimension/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/dimension/types.d.ts +0 -202
- package/dist/types/parser/entities/dimension/types.d.ts.map +0 -1
- package/dist/types/parser/entities/ellipse/index.d.ts +0 -3
- package/dist/types/parser/entities/ellipse/index.d.ts.map +0 -1
- package/dist/types/parser/entities/ellipse/parser.d.ts +0 -8
- package/dist/types/parser/entities/ellipse/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/ellipse/types.d.ts +0 -13
- package/dist/types/parser/entities/ellipse/types.d.ts.map +0 -1
- package/dist/types/parser/entities/face/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/face/index.d.ts +0 -4
- package/dist/types/parser/entities/face/index.d.ts.map +0 -1
- package/dist/types/parser/entities/face/parser.d.ts +0 -8
- package/dist/types/parser/entities/face/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/face/types.d.ts +0 -8
- package/dist/types/parser/entities/face/types.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts +0 -7
- package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts +0 -5
- package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +0 -3
- package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts +0 -3
- package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/index.d.ts +0 -9
- package/dist/types/parser/entities/hatch/index.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/patternData.d.ts +0 -3
- package/dist/types/parser/entities/hatch/patternData.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts +0 -60
- package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/definitionLine.d.ts +0 -9
- package/dist/types/parser/entities/hatch/types/definitionLine.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/hatch.d.ts +0 -39
- package/dist/types/parser/entities/hatch/types/hatch.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/index.d.ts +0 -4
- package/dist/types/parser/entities/hatch/types/index.d.ts.map +0 -1
- package/dist/types/parser/entities/image/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/image/index.d.ts +0 -4
- package/dist/types/parser/entities/image/index.d.ts.map +0 -1
- package/dist/types/parser/entities/image/parser.d.ts +0 -8
- package/dist/types/parser/entities/image/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/image/types.d.ts +0 -55
- package/dist/types/parser/entities/image/types.d.ts.map +0 -1
- package/dist/types/parser/entities/index.d.ts +0 -42
- package/dist/types/parser/entities/index.d.ts.map +0 -1
- package/dist/types/parser/entities/insert/index.d.ts +0 -3
- package/dist/types/parser/entities/insert/index.d.ts.map +0 -1
- package/dist/types/parser/entities/insert/parser.d.ts +0 -8
- package/dist/types/parser/entities/insert/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/insert/types.d.ts +0 -19
- package/dist/types/parser/entities/insert/types.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/index.d.ts +0 -4
- package/dist/types/parser/entities/leader/index.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/parser.d.ts +0 -8
- package/dist/types/parser/entities/leader/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/types.d.ts +0 -24
- package/dist/types/parser/entities/leader/types.d.ts.map +0 -1
- package/dist/types/parser/entities/line/index.d.ts +0 -3
- package/dist/types/parser/entities/line/index.d.ts.map +0 -1
- package/dist/types/parser/entities/line/parser.d.ts +0 -8
- package/dist/types/parser/entities/line/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/line/types.d.ts +0 -11
- package/dist/types/parser/entities/line/types.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/index.d.ts +0 -4
- package/dist/types/parser/entities/lwpolyline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/parser.d.ts +0 -7
- package/dist/types/parser/entities/lwpolyline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/types.d.ts +0 -20
- package/dist/types/parser/entities/lwpolyline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/mesh/index.d.ts +0 -3
- package/dist/types/parser/entities/mesh/index.d.ts.map +0 -1
- package/dist/types/parser/entities/mesh/parser.d.ts +0 -8
- package/dist/types/parser/entities/mesh/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/mesh/types.d.ts +0 -23
- package/dist/types/parser/entities/mesh/types.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/index.d.ts +0 -4
- package/dist/types/parser/entities/mline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/parser.d.ts +0 -12
- package/dist/types/parser/entities/mline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/types.d.ts +0 -151
- package/dist/types/parser/entities/mline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/index.d.ts +0 -4
- package/dist/types/parser/entities/mtext/index.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/parser.d.ts +0 -10
- package/dist/types/parser/entities/mtext/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/types.d.ts +0 -34
- package/dist/types/parser/entities/mtext/types.d.ts.map +0 -1
- package/dist/types/parser/entities/multileader/index.d.ts +0 -3
- package/dist/types/parser/entities/multileader/index.d.ts.map +0 -1
- package/dist/types/parser/entities/multileader/parser.d.ts +0 -8
- package/dist/types/parser/entities/multileader/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/multileader/types.d.ts +0 -35
- package/dist/types/parser/entities/multileader/types.d.ts.map +0 -1
- package/dist/types/parser/entities/point/index.d.ts +0 -3
- package/dist/types/parser/entities/point/index.d.ts.map +0 -1
- package/dist/types/parser/entities/point/parser.d.ts +0 -7
- package/dist/types/parser/entities/point/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/point/types.d.ts +0 -10
- package/dist/types/parser/entities/point/types.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/index.d.ts +0 -4
- package/dist/types/parser/entities/polyline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/parser.d.ts +0 -7
- package/dist/types/parser/entities/polyline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/types.d.ts +0 -20
- package/dist/types/parser/entities/polyline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/ray/index.d.ts +0 -3
- package/dist/types/parser/entities/ray/index.d.ts.map +0 -1
- package/dist/types/parser/entities/ray/parser.d.ts +0 -8
- package/dist/types/parser/entities/ray/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/ray/types.d.ts +0 -11
- package/dist/types/parser/entities/ray/types.d.ts.map +0 -1
- package/dist/types/parser/entities/region/index.d.ts +0 -3
- package/dist/types/parser/entities/region/index.d.ts.map +0 -1
- package/dist/types/parser/entities/region/parser.d.ts +0 -8
- package/dist/types/parser/entities/region/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/region/types.d.ts +0 -10
- package/dist/types/parser/entities/region/types.d.ts.map +0 -1
- package/dist/types/parser/entities/section/index.d.ts +0 -3
- package/dist/types/parser/entities/section/index.d.ts.map +0 -1
- package/dist/types/parser/entities/section/parser.d.ts +0 -7
- package/dist/types/parser/entities/section/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/section/types.d.ts +0 -20
- package/dist/types/parser/entities/section/types.d.ts.map +0 -1
- package/dist/types/parser/entities/shared.d.ts +0 -82
- package/dist/types/parser/entities/shared.d.ts.map +0 -1
- package/dist/types/parser/entities/solid/index.d.ts +0 -3
- package/dist/types/parser/entities/solid/index.d.ts.map +0 -1
- package/dist/types/parser/entities/solid/parser.d.ts +0 -8
- package/dist/types/parser/entities/solid/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/solid/types.d.ts +0 -10
- package/dist/types/parser/entities/solid/types.d.ts.map +0 -1
- package/dist/types/parser/entities/solid3d/index.d.ts +0 -3
- package/dist/types/parser/entities/solid3d/index.d.ts.map +0 -1
- package/dist/types/parser/entities/solid3d/parser.d.ts +0 -8
- package/dist/types/parser/entities/solid3d/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/solid3d/types.d.ts +0 -12
- package/dist/types/parser/entities/solid3d/types.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/index.d.ts +0 -4
- package/dist/types/parser/entities/spline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/parser.d.ts +0 -8
- package/dist/types/parser/entities/spline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/types.d.ts +0 -22
- package/dist/types/parser/entities/spline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/text/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/text/index.d.ts +0 -4
- package/dist/types/parser/entities/text/index.d.ts.map +0 -1
- package/dist/types/parser/entities/text/parser.d.ts +0 -26
- package/dist/types/parser/entities/text/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/text/types.d.ts +0 -21
- package/dist/types/parser/entities/text/types.d.ts.map +0 -1
- package/dist/types/parser/entities/tolerance/index.d.ts +0 -3
- package/dist/types/parser/entities/tolerance/index.d.ts.map +0 -1
- package/dist/types/parser/entities/tolerance/parser.d.ts +0 -8
- package/dist/types/parser/entities/tolerance/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/tolerance/types.d.ts +0 -17
- package/dist/types/parser/entities/tolerance/types.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/index.d.ts +0 -4
- package/dist/types/parser/entities/vertex/index.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/parser.d.ts +0 -8
- package/dist/types/parser/entities/vertex/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/types.d.ts +0 -17
- package/dist/types/parser/entities/vertex/types.d.ts.map +0 -1
- package/dist/types/parser/entities/viewport/index.d.ts +0 -3
- package/dist/types/parser/entities/viewport/index.d.ts.map +0 -1
- package/dist/types/parser/entities/viewport/parser.d.ts +0 -7
- package/dist/types/parser/entities/viewport/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/viewport/types.d.ts +0 -187
- package/dist/types/parser/entities/viewport/types.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/index.d.ts +0 -4
- package/dist/types/parser/entities/wipeout/index.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/parser.d.ts +0 -8
- package/dist/types/parser/entities/wipeout/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/types.d.ts +0 -38
- package/dist/types/parser/entities/wipeout/types.d.ts.map +0 -1
- package/dist/types/parser/entities/xline/index.d.ts +0 -3
- package/dist/types/parser/entities/xline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/xline/parser.d.ts +0 -8
- package/dist/types/parser/entities/xline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/xline/types.d.ts +0 -9
- package/dist/types/parser/entities/xline/types.d.ts.map +0 -1
- package/dist/types/parser/getAcadColor.d.ts +0 -8
- package/dist/types/parser/getAcadColor.d.ts.map +0 -1
- package/dist/types/parser/header/index.d.ts +0 -3
- package/dist/types/parser/header/index.d.ts.map +0 -1
- package/dist/types/parser/index.d.ts +0 -9
- package/dist/types/parser/index.d.ts.map +0 -1
- package/dist/types/parser/objects/consts.d.ts.map +0 -1
- package/dist/types/parser/objects/dictionary/index.d.ts +0 -3
- package/dist/types/parser/objects/dictionary/index.d.ts.map +0 -1
- package/dist/types/parser/objects/dictionary/parser.d.ts +0 -3
- package/dist/types/parser/objects/dictionary/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/dictionary/types.d.ts +0 -13
- package/dist/types/parser/objects/dictionary/types.d.ts.map +0 -1
- package/dist/types/parser/objects/index.d.ts +0 -12
- package/dist/types/parser/objects/index.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/consts.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/index.d.ts +0 -4
- package/dist/types/parser/objects/layout/index.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/parser.d.ts +0 -3
- package/dist/types/parser/objects/layout/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/types.d.ts +0 -25
- package/dist/types/parser/objects/layout/types.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/consts.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/index.d.ts +0 -4
- package/dist/types/parser/objects/plotSettings/index.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/parser.d.ts +0 -3
- package/dist/types/parser/objects/plotSettings/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/types.d.ts +0 -37
- package/dist/types/parser/objects/plotSettings/types.d.ts.map +0 -1
- package/dist/types/parser/objects/shared.d.ts +0 -3
- package/dist/types/parser/objects/shared.d.ts.map +0 -1
- package/dist/types/parser/objects/spatial_filter/index.d.ts +0 -3
- package/dist/types/parser/objects/spatial_filter/index.d.ts.map +0 -1
- package/dist/types/parser/objects/spatial_filter/parser.d.ts +0 -3
- package/dist/types/parser/objects/spatial_filter/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/spatial_filter/types.d.ts +0 -39
- package/dist/types/parser/objects/spatial_filter/types.d.ts.map +0 -1
- package/dist/types/parser/objects/types.d.ts +0 -29
- package/dist/types/parser/objects/types.d.ts.map +0 -1
- package/dist/types/parser/objects/xrecord/index.d.ts +0 -3
- package/dist/types/parser/objects/xrecord/index.d.ts.map +0 -1
- package/dist/types/parser/objects/xrecord/parser.d.ts +0 -3
- package/dist/types/parser/objects/xrecord/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/xrecord/types.d.ts +0 -16
- package/dist/types/parser/objects/xrecord/types.d.ts.map +0 -1
- package/dist/types/parser/shared/extensions/parser.d.ts +0 -4
- package/dist/types/parser/shared/extensions/parser.d.ts.map +0 -1
- package/dist/types/parser/shared/index.d.ts +0 -5
- package/dist/types/parser/shared/index.d.ts.map +0 -1
- package/dist/types/parser/shared/isMatched.d.ts +0 -7
- package/dist/types/parser/shared/isMatched.d.ts.map +0 -1
- package/dist/types/parser/shared/parsePoint.d.ts +0 -8
- package/dist/types/parser/shared/parsePoint.d.ts.map +0 -1
- package/dist/types/parser/shared/parserGenerator.d.ts +0 -50
- package/dist/types/parser/shared/parserGenerator.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/index.d.ts +0 -4
- package/dist/types/parser/shared/xdata/index.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/interpreter.d.ts +0 -21
- package/dist/types/parser/shared/xdata/interpreter.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/parser.d.ts +0 -6
- package/dist/types/parser/shared/xdata/parser.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/types.d.ts +0 -10
- package/dist/types/parser/shared/xdata/types.d.ts.map +0 -1
- package/dist/types/parser/tables/blockRecord/index.d.ts +0 -3
- package/dist/types/parser/tables/blockRecord/index.d.ts.map +0 -1
- package/dist/types/parser/tables/blockRecord/parser.d.ts +0 -2
- package/dist/types/parser/tables/blockRecord/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/blockRecord/types.d.ts +0 -11
- package/dist/types/parser/tables/blockRecord/types.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/consts.d.ts +0 -3
- package/dist/types/parser/tables/dimStyle/consts.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/index.d.ts +0 -4
- package/dist/types/parser/tables/dimStyle/index.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/parser.d.ts +0 -2
- package/dist/types/parser/tables/dimStyle/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/types.d.ts +0 -128
- package/dist/types/parser/tables/dimStyle/types.d.ts.map +0 -1
- package/dist/types/parser/tables/index.d.ts +0 -9
- package/dist/types/parser/tables/index.d.ts.map +0 -1
- package/dist/types/parser/tables/layer/index.d.ts +0 -3
- package/dist/types/parser/tables/layer/index.d.ts.map +0 -1
- package/dist/types/parser/tables/layer/parser.d.ts +0 -2
- package/dist/types/parser/tables/layer/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/layer/types.d.ts +0 -14
- package/dist/types/parser/tables/layer/types.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/consts.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/index.d.ts +0 -4
- package/dist/types/parser/tables/ltype/index.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/parser.d.ts +0 -2
- package/dist/types/parser/tables/ltype/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/types.d.ts +0 -22
- package/dist/types/parser/tables/ltype/types.d.ts.map +0 -1
- package/dist/types/parser/tables/parser.d.ts +0 -3
- package/dist/types/parser/tables/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/shared.d.ts +0 -3
- package/dist/types/parser/tables/shared.d.ts.map +0 -1
- package/dist/types/parser/tables/style/index.d.ts +0 -3
- package/dist/types/parser/tables/style/index.d.ts.map +0 -1
- package/dist/types/parser/tables/style/parser.d.ts +0 -2
- package/dist/types/parser/tables/style/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/style/types.d.ts +0 -15
- package/dist/types/parser/tables/style/types.d.ts.map +0 -1
- package/dist/types/parser/tables/types.d.ts +0 -15
- package/dist/types/parser/tables/types.d.ts.map +0 -1
- package/dist/types/parser/tables/vport/index.d.ts +0 -3
- package/dist/types/parser/tables/vport/index.d.ts.map +0 -1
- package/dist/types/parser/tables/vport/parser.d.ts +0 -2
- package/dist/types/parser/tables/vport/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/vport/types.d.ts +0 -44
- package/dist/types/parser/tables/vport/types.d.ts.map +0 -1
- package/dist/types/parser/types.d.ts +0 -23
- package/dist/types/parser/types.d.ts.map +0 -1
- package/dist/types/stream-parser/DxfStreamParser.d.ts +0 -44
- package/dist/types/stream-parser/DxfStreamParser.d.ts.map +0 -1
- package/dist/types/stream-parser/index.d.ts +0 -2
- package/dist/types/stream-parser/index.d.ts.map +0 -1
- package/dist/types/stream-parser/streamShared/parseData.d.ts +0 -20
- package/dist/types/stream-parser/streamShared/parseData.d.ts.map +0 -1
- package/dist/types/types/color.d.ts +0 -4
- package/dist/types/types/color.d.ts.map +0 -1
- package/dist/types/types/dxfHeader.d.ts +0 -17
- package/dist/types/types/dxfHeader.d.ts.map +0 -1
- package/dist/types/types/index.d.ts +0 -24
- package/dist/types/types/index.d.ts.map +0 -1
- package/dist/types/utils/debug.d.ts.map +0 -1
- package/dist/types/utils/index.d.ts +0 -18
- package/dist/types/utils/index.d.ts.map +0 -1
- /package/dist/{types → cjs/types}/consts/block.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/color.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/config.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/hatch.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/lineweight.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/measurement.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/obscuredLineTypes.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/plotStyleType.d.ts +0 -0
- /package/dist/{types/utils → cjs/types}/debug.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/AutoCadColorIndex.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/DxfArrayScanner.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/arc_dimension/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/attdef/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/face/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/image/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/leader/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/lwpolyline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/mline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/mtext/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/polyline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/spline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/text/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/vertex/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/wipeout/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/objects/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/objects/layout/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/objects/plotSettings/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/tables/ltype/consts.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/vertex/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,UAAU;IAClB,oBAAoB,IAAI;IACxB,eAAe,IAAI;IACnB,QAAQ,IAAI;IACZ,qBAAqB,IAAI;IACzB,oBAAoB,KAAK;IACzB,YAAY,KAAK;IACjB,WAAW,KAAK;IAChB,QAAQ,MAAM;CACjB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/vertex/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner';
|
|
2
|
-
import type { VertexEntity } from './types';
|
|
3
|
-
export declare class VertexParser {
|
|
4
|
-
static ForEntityName: string;
|
|
5
|
-
private parser;
|
|
6
|
-
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): VertexEntity;
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/vertex/parser.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAO3E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAuE5C,qBAAa,YAAY;IACrB,MAAM,CAAC,aAAa,SAAY;IAChC,OAAO,CAAC,MAAM,CAA4D;IAE1E,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY;CAK3D"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Point3D } from '../../../types';
|
|
2
|
-
import type { CommonDxfEntity } from '../shared';
|
|
3
|
-
import type { VertexFlag } from './consts';
|
|
4
|
-
export interface VertexEntity extends CommonDxfEntity, Point3D {
|
|
5
|
-
subclassMarker: 'AcDb2dVertex' | 'AcDb3dPolylineVertex';
|
|
6
|
-
startWidth: number;
|
|
7
|
-
endWidth: number;
|
|
8
|
-
bulge: number;
|
|
9
|
-
flag: VertexFlag;
|
|
10
|
-
tangentDirection: number;
|
|
11
|
-
polyfaceIndex0?: number;
|
|
12
|
-
polyfaceIndex1?: number;
|
|
13
|
-
polyfaceIndex2?: number;
|
|
14
|
-
polyfaceIndex3?: number;
|
|
15
|
-
id: number;
|
|
16
|
-
}
|
|
17
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/vertex/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,MAAM,WAAW,YAAa,SAAQ,eAAe,EAAE,OAAO;IAC1D,cAAc,EAAE,cAAc,GAAG,sBAAsB,CAAC;IACxD,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,UAAU,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,EAAE,EAAE,MAAM,CAAC;CACd"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/viewport/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAA"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner';
|
|
2
|
-
import type { ViewportEntity } from './types';
|
|
3
|
-
export declare class ViewportParser {
|
|
4
|
-
static ForEntityName: string;
|
|
5
|
-
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): ViewportEntity;
|
|
6
|
-
}
|
|
7
|
-
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/viewport/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAS3E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAoP9C,qBAAa,cAAc;IACvB,MAAM,CAAC,aAAa,SAAc;IAElC,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAAG,cAAc;CAM5E"}
|
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import type { Point2D, Point3D } from '../../../types';
|
|
2
|
-
import type { DefaultLightingType, OrthographicType, RenderMode, UCSPerViewport } from '../../../consts';
|
|
3
|
-
import type { ShadePlotMode } from '../../../parser/objects';
|
|
4
|
-
import type { CommonDxfEntity } from '../shared';
|
|
5
|
-
export interface ViewportEntity extends CommonDxfEntity {
|
|
6
|
-
type: 'VIEWPORT';
|
|
7
|
-
/** Parsed by group code `100` */
|
|
8
|
-
subclassMarker: string;
|
|
9
|
-
/** Parsed by group code `10`, `20` and `30` (in WCS) */
|
|
10
|
-
viewportCenter: Point3D;
|
|
11
|
-
/** Parsed by group code `40` (in paper space unit) */
|
|
12
|
-
width: number;
|
|
13
|
-
/** Parsed by group code `41` (in paper space unit) */
|
|
14
|
-
height: number;
|
|
15
|
-
/**
|
|
16
|
-
* Viewport status field:
|
|
17
|
-
*
|
|
18
|
-
* - `-1`: On, but is fully off screen, or is one of the viewports that is not active because the $MAXACTVP count is currently being exceeded.
|
|
19
|
-
* - `0`: Off
|
|
20
|
-
* - `<positive>`: On and active. The value indicates the order of stacking for the viewports, where `1` is the active viewport, `2` is the next, and so forth
|
|
21
|
-
*
|
|
22
|
-
* Parsed by group code `68`
|
|
23
|
-
*/
|
|
24
|
-
status: number;
|
|
25
|
-
/** Parsed by group code `69` */
|
|
26
|
-
viewportId: number;
|
|
27
|
-
/**
|
|
28
|
-
* Represent the center point of the viewport on the display (in DCS).
|
|
29
|
-
*
|
|
30
|
-
* Parsed by group code `12` and `22`
|
|
31
|
-
* */
|
|
32
|
-
displayCenter: Point2D;
|
|
33
|
-
/** Parsed by group code `13` and `23` */
|
|
34
|
-
snapBase: Point2D;
|
|
35
|
-
/** Parsed by group code `14` and `24` */
|
|
36
|
-
snapSpacing: Point2D;
|
|
37
|
-
/** Parsed by group code `15` and `25` */
|
|
38
|
-
gridSpacing: Point2D;
|
|
39
|
-
/**
|
|
40
|
-
* View direction vector (in WCS)
|
|
41
|
-
*
|
|
42
|
-
* Parsed by group code `16`, `26` and `36`
|
|
43
|
-
* */
|
|
44
|
-
viewDirection: Point3D;
|
|
45
|
-
/**
|
|
46
|
-
* View target point (in WCS)
|
|
47
|
-
*
|
|
48
|
-
* Parsed by group code `16`, `26` and `36`
|
|
49
|
-
* */
|
|
50
|
-
targetPoint: Point3D;
|
|
51
|
-
/** Parsed by group code `42` */
|
|
52
|
-
perspectiveLensLength: number;
|
|
53
|
-
/** Parsed by group code `43` */
|
|
54
|
-
frontClipZ: number;
|
|
55
|
-
/** Parsed by group code `44` */
|
|
56
|
-
backClipZ: number;
|
|
57
|
-
/**
|
|
58
|
-
* View height (in model space units)
|
|
59
|
-
*
|
|
60
|
-
* Parsed by group code `45`
|
|
61
|
-
* */
|
|
62
|
-
viewHeight: number;
|
|
63
|
-
/** Parsed by group code `50` */
|
|
64
|
-
snapAngle: number;
|
|
65
|
-
/** Parsed by group code `51` */
|
|
66
|
-
viewTwistAngle: number;
|
|
67
|
-
/** Parsed by group code `72` */
|
|
68
|
-
circleZoomPercent: number;
|
|
69
|
-
/** Parsed by group code `331` */
|
|
70
|
-
frozenLayerIds?: string[];
|
|
71
|
-
/**
|
|
72
|
-
* Viewport status bit-coded flags
|
|
73
|
-
*
|
|
74
|
-
* Parsed by group code `90`
|
|
75
|
-
*
|
|
76
|
-
* @see ViewportStatusFlag
|
|
77
|
-
*/
|
|
78
|
-
statusBitFlags: number;
|
|
79
|
-
/**
|
|
80
|
-
* Hard-pointer ID/handle to entity that serves as the viewport's clipping boundary
|
|
81
|
-
* (only present if viewport is non-rectangular)
|
|
82
|
-
*
|
|
83
|
-
* Parsed by group code `340`
|
|
84
|
-
* */
|
|
85
|
-
clippingBoundaryId?: string;
|
|
86
|
-
/**
|
|
87
|
-
* Plot style sheet name assigned to this viewport
|
|
88
|
-
*
|
|
89
|
-
* Parsed by group code `1`
|
|
90
|
-
*/
|
|
91
|
-
sheetName: string;
|
|
92
|
-
/** Parsed by group code `281` */
|
|
93
|
-
renderMode: RenderMode;
|
|
94
|
-
/** Parsed by group code `71` */
|
|
95
|
-
ucsPerViewport: UCSPerViewport;
|
|
96
|
-
/**
|
|
97
|
-
* Display UCS icon at UCS origin flag: Controls whether UCS icon represents viewport UCS
|
|
98
|
-
* or current UCS (these will be different if UCSVP is `1` and viewport is not active).
|
|
99
|
-
*
|
|
100
|
-
* However, this field is currently being ignored and the icon always represents the viewport UCS
|
|
101
|
-
* in AutoCAD.
|
|
102
|
-
*
|
|
103
|
-
* Parsed by group code `74`.
|
|
104
|
-
*/
|
|
105
|
-
iconFlag: 0 | 1;
|
|
106
|
-
/** Parsed by group code `110`, `210` and `310`*/
|
|
107
|
-
ucsOrigin?: Point3D;
|
|
108
|
-
/** Parsed by group code `120`, `220` and `320`*/
|
|
109
|
-
ucsXAxis?: Point3D;
|
|
110
|
-
/** Parsed by group code `130`, `230` and `330`*/
|
|
111
|
-
ucsYAxis?: Point3D;
|
|
112
|
-
/**
|
|
113
|
-
* ID/handle of `AcDbUCSTableRecord`
|
|
114
|
-
*
|
|
115
|
-
* - If UCS is a named UCS
|
|
116
|
-
* - If not present, then UCS is unnamed
|
|
117
|
-
*
|
|
118
|
-
* Parsed by group code `345`.
|
|
119
|
-
*/
|
|
120
|
-
ucsId?: string;
|
|
121
|
-
/**
|
|
122
|
-
* ID/handle of AcDbUCSTableRecord of base UCS
|
|
123
|
-
*
|
|
124
|
-
* - If UCS is orthographic (79 code is non-zero)
|
|
125
|
-
* - If not present and 79 code is non-zero, then base UCS is taken to be WORLD
|
|
126
|
-
*
|
|
127
|
-
* Parsed by group code `346`.
|
|
128
|
-
*/
|
|
129
|
-
ucsBaseId?: string;
|
|
130
|
-
/** Parsed by group code `79`. */
|
|
131
|
-
orthographicType?: OrthographicType;
|
|
132
|
-
/** Parsed by group code `146`. */
|
|
133
|
-
elevation: number;
|
|
134
|
-
/** Parsed by group code `170`. */
|
|
135
|
-
shadePlotMode: ShadePlotMode;
|
|
136
|
-
/**
|
|
137
|
-
* Frequency of major grid lines compared to minor grid lines
|
|
138
|
-
*
|
|
139
|
-
* Parsed by group code `61`.
|
|
140
|
-
*/
|
|
141
|
-
majorGridFrequency: number;
|
|
142
|
-
/** Parsed by group code `332`. */
|
|
143
|
-
backgroundId?: string;
|
|
144
|
-
/** Parsed by group code `333`. */
|
|
145
|
-
shadePlotId?: string;
|
|
146
|
-
/** Parsed by group code `348`. */
|
|
147
|
-
visualStyleId?: string;
|
|
148
|
-
/**
|
|
149
|
-
* Default lighting flag. On when no user lights are specified.
|
|
150
|
-
*
|
|
151
|
-
* Parsed by group code `292`.
|
|
152
|
-
* */
|
|
153
|
-
isDefaultLighting: boolean;
|
|
154
|
-
/** Parsed by group code `282`. */
|
|
155
|
-
defaultLightingType?: DefaultLightingType;
|
|
156
|
-
/** Parsed by group code `141`. */
|
|
157
|
-
brightness: number;
|
|
158
|
-
/** Parsed by group code `142`. */
|
|
159
|
-
contrast: number;
|
|
160
|
-
/**
|
|
161
|
-
* Only exists if ambient light color is given in 16-bit color index
|
|
162
|
-
*
|
|
163
|
-
* Parsed by group code `63`.
|
|
164
|
-
* */
|
|
165
|
-
ambientLightColorIndex?: number;
|
|
166
|
-
/**
|
|
167
|
-
* Only exists if ambient light color is given in 32-bit color instance
|
|
168
|
-
*
|
|
169
|
-
* Parsed by group code `421`.
|
|
170
|
-
* */
|
|
171
|
-
ambientLightColorInstance?: number;
|
|
172
|
-
/**
|
|
173
|
-
* Only exists if ambient light color is given in string
|
|
174
|
-
*
|
|
175
|
-
* Parsed by group code `431`.
|
|
176
|
-
* */
|
|
177
|
-
ambientLightColorName?: string;
|
|
178
|
-
/** Parsed by group code `361`. */
|
|
179
|
-
sunId?: string;
|
|
180
|
-
/**
|
|
181
|
-
* Soft pointer reference to viewport object (for layer VP property override)
|
|
182
|
-
*
|
|
183
|
-
* Parsed by group code `335`, `343`, `344` and `91`.
|
|
184
|
-
*/
|
|
185
|
-
softPointers?: string[];
|
|
186
|
-
}
|
|
187
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/viewport/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA;AACtD,OAAO,KAAK,EACR,mBAAmB,EACnB,gBAAgB,EAChB,UAAU,EACV,cAAc,EACjB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAEjD,MAAM,WAAW,cAAe,SAAQ,eAAe;IACnD,IAAI,EAAE,UAAU,CAAC;IACjB,iCAAiC;IACjC,cAAc,EAAE,MAAM,CAAC;IACvB,wDAAwD;IACxD,cAAc,EAAE,OAAO,CAAC;IACxB,sDAAsD;IACtD,KAAK,EAAE,MAAM,CAAC;IACd,sDAAsD;IACtD,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;OAQG;IACH,MAAM,EAAE,MAAM,CAAC;IACf,gCAAgC;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB;;;;SAIK;IACL,aAAa,EAAE,OAAO,CAAC;IACvB,yCAAyC;IACzC,QAAQ,EAAE,OAAO,CAAC;IAClB,yCAAyC;IACzC,WAAW,EAAE,OAAO,CAAC;IACrB,yCAAyC;IACzC,WAAW,EAAE,OAAO,CAAC;IACrB;;;;SAIK;IACL,aAAa,EAAE,OAAO,CAAC;IACvB;;;;SAIK;IACL,WAAW,EAAE,OAAO,CAAC;IACrB,gCAAgC;IAChC,qBAAqB,EAAE,MAAM,CAAC;IAC9B,gCAAgC;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,gCAAgC;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB;;;;SAIK;IACL,UAAU,EAAE,MAAM,CAAC;IACnB,gCAAgC;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,gCAAgC;IAChC,cAAc,EAAE,MAAM,CAAC;IACvB,gCAAgC;IAChC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iCAAiC;IACjC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B;;;;;;OAMG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;;;;SAKK;IACL,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,UAAU,EAAE,UAAU,CAAC;IACvB,gCAAgC;IAChC,cAAc,EAAE,cAAc,CAAC;IAC/B;;;;;;;;OAQG;IACH,QAAQ,EAAE,CAAC,GAAG,CAAC,CAAC;IAChB,iDAAiD;IACjD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iCAAiC;IACjC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,kCAAkC;IAClC,SAAS,EAAE,MAAM,CAAC;IAClB,kCAAkC;IAClC,aAAa,EAAE,aAAa,CAAC;IAC7B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B,kCAAkC;IAClC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kCAAkC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kCAAkC;IAClC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;SAIK;IACL,iBAAiB,EAAE,OAAO,CAAC;IAC3B,kCAAkC;IAClC,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,kCAAkC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,kCAAkC;IAClC,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;SAIK;IACL,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;;SAIK;IACL,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC;;;;SAIK;IACL,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,kCAAkC;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;CAC1B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/wipeout/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IACxB,SAAS,IAAI;IACb,uBAAuB,IAAI;IAC3B,mBAAmB,IAAI;IACvB,YAAY,IAAI;CACnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/wipeout/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner';
|
|
2
|
-
import type { WipeoutEntity } from './types';
|
|
3
|
-
export declare class WipeoutEntityParser {
|
|
4
|
-
static ForEntityName: string;
|
|
5
|
-
private parser;
|
|
6
|
-
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): WipeoutEntity;
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/wipeout/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAS3E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AA6F7C,qBAAa,mBAAmB;IAC5B,MAAM,CAAC,aAAa,SAAa;IACjC,OAAO,CAAC,MAAM,CAAmE;IAEjF,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY;CAK3D"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import type { Point2D, Point3D } from '../../../types';
|
|
2
|
-
import type { ImageClippingBoundaryType } from '../image';
|
|
3
|
-
import type { CommonDxfEntity } from '../shared';
|
|
4
|
-
export interface WipeoutEntity extends CommonDxfEntity {
|
|
5
|
-
type: 'WIPEOUT';
|
|
6
|
-
subclassMarker: 'AcDbRasterImage';
|
|
7
|
-
classVersion: number;
|
|
8
|
-
/** Insertion point */
|
|
9
|
-
position: Point3D;
|
|
10
|
-
/** U-vector of a single pixel (points along the visual bottom of the image, starting at the insertion point) (in WCS)*/
|
|
11
|
-
uDirection: Point3D;
|
|
12
|
-
/** V-vector of a single pixel (points along the visual left side of the image, starting at the insertion point) (in WCS) */
|
|
13
|
-
vDirection: Point3D;
|
|
14
|
-
/** Image size in pixels (U and V values) */
|
|
15
|
-
imageSize: Point2D;
|
|
16
|
-
/** Hard reference to imagedef object */
|
|
17
|
-
imageDefHardId: string;
|
|
18
|
-
/** @see ImageDisplayFlag */
|
|
19
|
-
displayFlag: number;
|
|
20
|
-
/** Image display properties */
|
|
21
|
-
displayProperties: number;
|
|
22
|
-
/** Clipping state (on/off) */
|
|
23
|
-
isClipping: boolean;
|
|
24
|
-
/** Brightness value (0-100; default = 50) */
|
|
25
|
-
brightness: number;
|
|
26
|
-
/** Contrast value (0-100; default = 50) */
|
|
27
|
-
contrast: number;
|
|
28
|
-
/** Fade value (0-100; default = 0) */
|
|
29
|
-
fade: number;
|
|
30
|
-
/** Hard reference to imagedef_reactor object */
|
|
31
|
-
imageDefReactorHardId: string;
|
|
32
|
-
/** @see ImageClippingBoundaryType */
|
|
33
|
-
boundaryType: ImageClippingBoundaryType;
|
|
34
|
-
/** Number of clip boundary vertices that follow */
|
|
35
|
-
numberOfVertices: number;
|
|
36
|
-
boundary: Point2D[];
|
|
37
|
-
}
|
|
38
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/wipeout/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,UAAU,CAAC;AAC1D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAEjD,MAAM,WAAW,aAAc,SAAQ,eAAe;IAClD,IAAI,EAAE,SAAS,CAAC;IAChB,cAAc,EAAE,iBAAiB,CAAC;IAClC,YAAY,EAAE,MAAM,CAAC;IACrB,sBAAsB;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,wHAAwH;IACxH,UAAU,EAAE,OAAO,CAAA;IACnB,4HAA4H;IAC5H,UAAU,EAAE,OAAO,CAAA;IACnB,4CAA4C;IAC5C,SAAS,EAAE,OAAO,CAAA;IAClB,wCAAwC;IACxC,cAAc,EAAE,MAAM,CAAC;IACvB,4BAA4B;IAC5B,WAAW,EAAE,MAAM,CAAA;IACnB,+BAA+B;IAC/B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAC;IACpB,6CAA6C;IAC7C,UAAU,EAAE,MAAM,CAAC;IACnB,2CAA2C;IAC3C,QAAQ,EAAE,MAAM,CAAC;IACjB,sCAAsC;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,gDAAgD;IAChD,qBAAqB,EAAE,MAAM,CAAA;IAC7B,qCAAqC;IACrC,YAAY,EAAE,yBAAyB,CAAA;IACvC,mDAAmD;IACnD,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,EAAE,OAAO,EAAE,CAAA;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/xline/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner';
|
|
2
|
-
import type { XLineEntity } from './types';
|
|
3
|
-
export declare class XLineEntityParser {
|
|
4
|
-
static ForEntityName: string;
|
|
5
|
-
private parser;
|
|
6
|
-
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): XLineEntity;
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/xline/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAQ3E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAqB3C,qBAAa,iBAAiB;IAC1B,MAAM,CAAC,aAAa,SAAW;IAC/B,OAAO,CAAC,MAAM,CAA2C;IAEzD,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY;CAK3D"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { Point3D } from '../../../types';
|
|
2
|
-
import type { CommonDxfEntity } from '../shared';
|
|
3
|
-
export interface XLineEntity extends CommonDxfEntity {
|
|
4
|
-
type: 'XLINE';
|
|
5
|
-
subclassMarker: 'AcDbXline';
|
|
6
|
-
position: Point3D;
|
|
7
|
-
direction: Point3D;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/xline/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAEjD,MAAM,WAAW,WAAY,SAAQ,eAAe;IAChD,IAAI,EAAE,OAAO,CAAC;IACd,cAAc,EAAE,WAAW,CAAC;IAC5B,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;CACtB"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ColorIndex, ColorInstance } from "../types/color";
|
|
2
|
-
/**
|
|
3
|
-
* Returns the truecolor value of the given AutoCad color index value
|
|
4
|
-
* @param index
|
|
5
|
-
* @return truecolor value as a number
|
|
6
|
-
*/
|
|
7
|
-
export declare function getAcadColor(index: ColorIndex): ColorInstance;
|
|
8
|
-
//# sourceMappingURL=getAcadColor.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getAcadColor.d.ts","sourceRoot":"","sources":["../../../src/parser/getAcadColor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAGhE;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,UAAU,GAAG,aAAa,CAE7D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/parser/header/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKxE,wBAAgB,WAAW,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,OAuBvE"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export type * from "./types";
|
|
2
|
-
export * from "./blocks";
|
|
3
|
-
export * from "./entities";
|
|
4
|
-
export * from "./header";
|
|
5
|
-
export * from "./objects";
|
|
6
|
-
export * from "./tables";
|
|
7
|
-
export * from "./shared";
|
|
8
|
-
export * from './getAcadColor';
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/parser/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../src/parser/objects/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACvB,+CAA+C;IAC/C,cAAc,IAAI;IAClB,uFAAuF;IACvF,aAAa,IAAI;IACjB,kFAAkF;IAClF,SAAS,IAAI;IACb,8CAA8C;IAC9C,eAAe,IAAI;IACnB,wCAAwC;IACxC,UAAU,IAAI;IACd,gEAAgE;IAChE,aAAa,IAAI;CACpB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/dictionary/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAA;AAC5B,cAAc,UAAU,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/dictionary/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,gBAAgB,EAGnB,MAAM,8BAA8B,CAAC;AAItC,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EAwChD,CAAC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { CommonDXFObject } from "../types";
|
|
2
|
-
import type { RecordCloneFlag } from "../consts";
|
|
3
|
-
export interface DictionaryDXFObject extends CommonDXFObject {
|
|
4
|
-
subclassMarker: 'AcDbDictionary';
|
|
5
|
-
isHardOwned?: boolean;
|
|
6
|
-
recordCloneFlag: RecordCloneFlag;
|
|
7
|
-
entries: {
|
|
8
|
-
name: string;
|
|
9
|
-
objectSoftId?: string;
|
|
10
|
-
objectHardId?: string;
|
|
11
|
-
}[];
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/dictionary/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAEjD,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IACxD,cAAc,EAAE,gBAAgB,CAAC;IACjC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,eAAe,EAAE,eAAe,CAAC;IACjC,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC7E"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export type * from './types';
|
|
2
|
-
export * from './consts';
|
|
3
|
-
export * from './dictionary';
|
|
4
|
-
export * from './layout';
|
|
5
|
-
export * from './plotSettings';
|
|
6
|
-
export * from './spatial_filter';
|
|
7
|
-
export * from './xrecord';
|
|
8
|
-
import type { DxfArrayScanner, ScannerGroup } from '../DxfArrayScanner';
|
|
9
|
-
export declare function parseObjects(curr: ScannerGroup, scanner: DxfArrayScanner): {
|
|
10
|
-
byName: Record<string, any[]>;
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/parser/objects/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kBAAkB,CAAA;AAChC,cAAc,WAAW,CAAA;AAEzB,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAexE,wBAAgB,YAAY,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe;;EA2BxE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/layout/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,iBAAiB;IACzB,SAAS,IAAI;IACb,QAAQ,IAAI;CACf"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/layout/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/layout/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,gBAAgB,EAGnB,MAAM,8BAA8B,CAAC;AAItC,eAAO,MAAM,cAAc,EAAE,gBAAgB,EA4F5C,CAAC"}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import type { Point2D, Point3D } from "../../../types";
|
|
2
|
-
import type { OrthographicType } from "../../../consts";
|
|
3
|
-
import type { PlotSettingDXFObject } from "../plotSettings";
|
|
4
|
-
import type { LayoutControlFlag } from "./consts";
|
|
5
|
-
export interface LayoutDXFObject extends Omit<PlotSettingDXFObject, 'subclassMarker'> {
|
|
6
|
-
subclassMarker: 'AcDbLayout';
|
|
7
|
-
layoutName: string;
|
|
8
|
-
controlFlag: LayoutControlFlag;
|
|
9
|
-
tabOrder: number;
|
|
10
|
-
minLimit: Point2D;
|
|
11
|
-
maxLimit: Point2D;
|
|
12
|
-
insertionPoint: Point3D;
|
|
13
|
-
minExtent: Point3D;
|
|
14
|
-
maxExtent: Point3D;
|
|
15
|
-
elevation: number;
|
|
16
|
-
ucsOrigin: Point3D;
|
|
17
|
-
ucsXAxis: Point3D;
|
|
18
|
-
ucsYAxis: Point3D;
|
|
19
|
-
orthographicType: OrthographicType;
|
|
20
|
-
paperSpaceTableId: string;
|
|
21
|
-
viewportId: string;
|
|
22
|
-
namedUcsId?: string;
|
|
23
|
-
orthographicUcsId?: string;
|
|
24
|
-
}
|
|
25
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/layout/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA;AACtD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAC5D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAGlD,MAAM,WAAW,eACb,SAAQ,IAAI,CAAC,oBAAoB,EAAE,gBAAgB,CAAC;IACpD,cAAc,EAAE,YAAY,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,iBAAiB,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/plotSettings/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACrB,MAAM,IAAI;IACV,WAAW,IAAI;IACf,MAAM,IAAI;CACb;AAED,oBAAY,QAAQ;IAChB,mBAAmB,IAAI;IACvB,eAAe,IAAI;IACnB,cAAc,IAAI;IAClB,cAAc,IAAI,CAAE,4BAA4B;IAChD,gBAAgB,IAAI,CAAE,4BAA4B;IAClD,kBAAkB,IAAI;CACzB;AAED,oBAAY,aAAa;IACrB,YAAY,IAAI;IAChB,SAAS,IAAI;IACb,MAAM,IAAI;IACV,QAAQ,IAAI;CACf;AAED,oBAAY,mBAAmB;IAC3B,KAAK,IAAI;IACT,OAAO,IAAI;IACX,MAAM,IAAI;IACV,YAAY,IAAI;IAChB,OAAO,IAAI;IACX,MAAM,IAAI;CACb"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/plotSettings/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/plotSettings/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAY,MAAM,8BAA8B,CAAC;AAG1E,eAAO,MAAM,oBAAoB,EAAE,gBAAgB,EAkKlD,CAAC"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import type { CommonDXFObject } from "../types";
|
|
2
|
-
import type { PlotPaperUnit, PlotType, ShadePlotMode, ShadePlotResolution } from "./consts";
|
|
3
|
-
export interface PlotSettingDXFObject extends CommonDXFObject {
|
|
4
|
-
subclassMarker: 'AcDbPlotSettings';
|
|
5
|
-
pageSetupName: string;
|
|
6
|
-
configName: string;
|
|
7
|
-
paperSize: string;
|
|
8
|
-
plotViewName: string;
|
|
9
|
-
marginLeft: number;
|
|
10
|
-
marginBottom: number;
|
|
11
|
-
marginRight: number;
|
|
12
|
-
marginTop: number;
|
|
13
|
-
paperWidth: number;
|
|
14
|
-
paperHeight: number;
|
|
15
|
-
plotOriginX: number;
|
|
16
|
-
plotOriginY: number;
|
|
17
|
-
windowAreaXMin: number;
|
|
18
|
-
windowAreaYMin: number;
|
|
19
|
-
windowAreaXMax: number;
|
|
20
|
-
windowAreaYMax: number;
|
|
21
|
-
printScaleNumerator: number;
|
|
22
|
-
printScaleDenominator: number;
|
|
23
|
-
layoutFlag: number;
|
|
24
|
-
plotPaperUnit: PlotPaperUnit;
|
|
25
|
-
plotRotation: 0 | 1 | 2 | 3;
|
|
26
|
-
plotType: PlotType;
|
|
27
|
-
currentStyleSheet: string;
|
|
28
|
-
standardScaleType: number;
|
|
29
|
-
shadePlotMode: ShadePlotMode;
|
|
30
|
-
shadePlotResolution: ShadePlotResolution;
|
|
31
|
-
shadePlotCustomDPI?: number;
|
|
32
|
-
scaleFactor: number;
|
|
33
|
-
imageOriginX: number;
|
|
34
|
-
imageOriginY: number;
|
|
35
|
-
shadePlotId?: string;
|
|
36
|
-
}
|
|
37
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/plotSettings/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAE5F,MAAM,WAAW,oBAAqB,SAAQ,eAAe;IACzD,cAAc,EAAE,kBAAkB,CAAC;IACnC,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,aAAa,CAAC;IAC7B,YAAY,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC5B,QAAQ,EAAE,QAAQ,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,aAAa,EAAE,aAAa,CAAC;IAC7B,mBAAmB,EAAE,mBAAmB,CAAC;IACzC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../../src/parser/objects/shared.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAY,MAAM,2BAA2B,CAAC;AAEvE,eAAO,MAAM,oBAAoB,EAAE,gBAAgB,EAuBlD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/spatial_filter/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAA;AAC5B,cAAc,UAAU,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/spatial_filter/parser.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,gBAAgB,EAIjB,MAAM,8BAA8B,CAAC;AAGtC,eAAO,MAAM,qBAAqB,EAAE,gBAAgB,EAoEnD,CAAC"}
|