dxf-json 0.10.1 → 0.14.1
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.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 +196 -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 +35 -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/acadProxyEntity/consts.d.ts +11 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/types.d.ts +34 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/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 +458 -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/shape/parser.d.ts +21 -0
- package/dist/cjs/types/parser/entities/shape/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/shape/types.d.ts +15 -0
- package/dist/cjs/types/parser/entities/shape/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/shared.d.ts +84 -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 +73 -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/dimassoc/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/dimassoc/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/dimassoc/types.d.ts +105 -0
- package/dist/cjs/types/parser/objects/dimassoc/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/group/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/group/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/group/types.d.ts +34 -0
- package/dist/cjs/types/parser/objects/group/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/imageDef/consts.d.ts +6 -0
- package/dist/cjs/types/parser/objects/imageDef/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/imageDef/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/imageDef/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/imageDef/types.d.ts +13 -0
- package/dist/cjs/types/parser/objects/imageDef/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_filter/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/layer_filter/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_filter/types.d.ts +25 -0
- package/dist/cjs/types/parser/objects/layer_filter/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_index/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/layer_index/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_index/types.d.ts +39 -0
- package/dist/cjs/types/parser/objects/layer_index/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/mleaderStyle/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/mleaderStyle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/mleaderStyle/types.d.ts +206 -0
- package/dist/cjs/types/parser/objects/mleaderStyle/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/mlineStyle/parser.d.ts +10 -0
- package/dist/cjs/types/parser/objects/mlineStyle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/mlineStyle/types.d.ts +89 -0
- package/dist/cjs/types/parser/objects/mlineStyle/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/asciiDxf.d.ts +6 -0
- package/dist/cjs/types/parser/shared/asciiDxf.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/binaryDxf.d.ts +18 -0
- package/dist/cjs/types/parser/shared/binaryDxf.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/dxfInput.d.ts +13 -0
- package/dist/cjs/types/parser/shared/dxfInput.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 +38 -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 +50 -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 +196 -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 +35 -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/acadProxyEntity/consts.d.ts +11 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/types.d.ts +34 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/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 +458 -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/shape/parser.d.ts +21 -0
- package/dist/esm/types/parser/entities/shape/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/shape/types.d.ts +15 -0
- package/dist/esm/types/parser/entities/shape/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/shared.d.ts +84 -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 +73 -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/dimassoc/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/dimassoc/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/dimassoc/types.d.ts +105 -0
- package/dist/esm/types/parser/objects/dimassoc/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/group/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/group/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/group/types.d.ts +34 -0
- package/dist/esm/types/parser/objects/group/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/imageDef/consts.d.ts +6 -0
- package/dist/esm/types/parser/objects/imageDef/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/imageDef/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/imageDef/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/imageDef/types.d.ts +13 -0
- package/dist/esm/types/parser/objects/imageDef/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_filter/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/layer_filter/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_filter/types.d.ts +25 -0
- package/dist/esm/types/parser/objects/layer_filter/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_index/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/layer_index/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_index/types.d.ts +39 -0
- package/dist/esm/types/parser/objects/layer_index/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/mleaderStyle/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/mleaderStyle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/mleaderStyle/types.d.ts +206 -0
- package/dist/esm/types/parser/objects/mleaderStyle/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/mlineStyle/parser.d.ts +10 -0
- package/dist/esm/types/parser/objects/mlineStyle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/mlineStyle/types.d.ts +89 -0
- package/dist/esm/types/parser/objects/mlineStyle/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/asciiDxf.d.ts +6 -0
- package/dist/esm/types/parser/shared/asciiDxf.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/binaryDxf.d.ts +18 -0
- package/dist/esm/types/parser/shared/binaryDxf.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/dxfInput.d.ts +13 -0
- package/dist/esm/types/parser/shared/dxfInput.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 +38 -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 +50 -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 +80 -78
- 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.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 -912
- 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/dimension.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
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
import type { Point2D, Point3D } from '../../../types/shared.ts';
|
|
2
|
+
import type { DefaultLightingType, OrthographicType, RenderMode, UCSPerViewport } from '../../../consts/viewport.ts';
|
|
3
|
+
import type { ShadePlotMode } from '../../../parser/objects/plotSettings/consts.ts';
|
|
4
|
+
import type { CommonDxfEntity } from '../shared.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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,0BAA0B,CAAA;AAChE,OAAO,KAAK,EACV,mBAAmB,EACnB,gBAAgB,EAChB,UAAU,EACV,cAAc,EACf,MAAM,6BAA6B,CAAA;AACpC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gDAAgD,CAAA;AACnF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,cAAe,SAAQ,eAAe;IACrD,IAAI,EAAE,UAAU,CAAA;IAChB,iCAAiC;IACjC,cAAc,EAAE,MAAM,CAAA;IACtB,wDAAwD;IACxD,cAAc,EAAE,OAAO,CAAA;IACvB,sDAAsD;IACtD,KAAK,EAAE,MAAM,CAAA;IACb,sDAAsD;IACtD,MAAM,EAAE,MAAM,CAAA;IACd;;;;;;;;OAQG;IACH,MAAM,EAAE,MAAM,CAAA;IACd,gCAAgC;IAChC,UAAU,EAAE,MAAM,CAAA;IAClB;;;;SAIK;IACL,aAAa,EAAE,OAAO,CAAA;IACtB,yCAAyC;IACzC,QAAQ,EAAE,OAAO,CAAA;IACjB,yCAAyC;IACzC,WAAW,EAAE,OAAO,CAAA;IACpB,yCAAyC;IACzC,WAAW,EAAE,OAAO,CAAA;IACpB;;;;SAIK;IACL,aAAa,EAAE,OAAO,CAAA;IACtB;;;;SAIK;IACL,WAAW,EAAE,OAAO,CAAA;IACpB,gCAAgC;IAChC,qBAAqB,EAAE,MAAM,CAAA;IAC7B,gCAAgC;IAChC,UAAU,EAAE,MAAM,CAAA;IAClB,gCAAgC;IAChC,SAAS,EAAE,MAAM,CAAA;IACjB;;;;SAIK;IACL,UAAU,EAAE,MAAM,CAAA;IAClB,gCAAgC;IAChC,SAAS,EAAE,MAAM,CAAA;IACjB,gCAAgC;IAChC,cAAc,EAAE,MAAM,CAAA;IACtB,gCAAgC;IAChC,iBAAiB,EAAE,MAAM,CAAA;IACzB,iCAAiC;IACjC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB;;;;;;OAMG;IACH,cAAc,EAAE,MAAM,CAAA;IACtB;;;;;SAKK;IACL,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAA;IACjB,iCAAiC;IACjC,UAAU,EAAE,UAAU,CAAA;IACtB,gCAAgC;IAChC,cAAc,EAAE,cAAc,CAAA;IAC9B;;;;;;;;OAQG;IACH,QAAQ,EAAE,CAAC,GAAG,CAAC,CAAA;IACf,iDAAiD;IACjD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,iCAAiC;IACjC,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IACnC,kCAAkC;IAClC,SAAS,EAAE,MAAM,CAAA;IACjB,kCAAkC;IAClC,aAAa,EAAE,aAAa,CAAA;IAC5B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAA;IAC1B,kCAAkC;IAClC,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,kCAAkC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,kCAAkC;IAClC,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB;;;;SAIK;IACL,iBAAiB,EAAE,OAAO,CAAA;IAC1B,kCAAkC;IAClC,mBAAmB,CAAC,EAAE,mBAAmB,CAAA;IACzC,kCAAkC;IAClC,UAAU,EAAE,MAAM,CAAA;IAClB,kCAAkC;IAClC,QAAQ,EAAE,MAAM,CAAA;IAChB;;;;SAIK;IACL,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B;;;;SAIK;IACL,yBAAyB,CAAC,EAAE,MAAM,CAAA;IAClC;;;;SAIK;IACL,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,kCAAkC;IAClC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/wipeout/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAC1B,SAAS,IAAI;IACb,uBAAuB,IAAI;IAC3B,mBAAmB,IAAI;IACvB,YAAY,IAAI;CACjB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
|
|
2
|
+
import type { WipeoutEntity } from './types.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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,0BAA0B,CAAA;AAS7E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AA6F/C,qBAAa,mBAAmB;IAC9B,MAAM,CAAC,aAAa,SAAY;IAChC,OAAO,CAAC,MAAM,CAGb;IAED,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,aAAa;CAEjC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { Point2D, Point3D } from '../../../types/shared.ts';
|
|
2
|
+
import type { ImageClippingBoundaryType } from '../image/consts.ts';
|
|
3
|
+
import type { CommonDxfEntity } from '../shared.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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,0BAA0B,CAAA;AAChE,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,oBAAoB,CAAA;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,aAAc,SAAQ,eAAe;IACpD,IAAI,EAAE,SAAS,CAAA;IACf,cAAc,EAAE,iBAAiB,CAAA;IACjC,YAAY,EAAE,MAAM,CAAA;IACpB,sBAAsB;IACtB,QAAQ,EAAE,OAAO,CAAA;IACjB,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,CAAA;IACtB,4BAA4B;IAC5B,WAAW,EAAE,MAAM,CAAA;IACnB,+BAA+B;IAC/B,iBAAiB,EAAE,MAAM,CAAA;IACzB,8BAA8B;IAC9B,UAAU,EAAE,OAAO,CAAA;IACnB,6CAA6C;IAC7C,UAAU,EAAE,MAAM,CAAA;IAClB,2CAA2C;IAC3C,QAAQ,EAAE,MAAM,CAAA;IAChB,sCAAsC;IACtC,IAAI,EAAE,MAAM,CAAA;IACZ,gDAAgD;IAChD,qBAAqB,EAAE,MAAM,CAAA;IAC7B,qCAAqC;IACrC,YAAY,EAAE,yBAAyB,CAAA;IACvC,mDAAmD;IACnD,gBAAgB,EAAE,MAAM,CAAA;IACxB,QAAQ,EAAE,OAAO,EAAE,CAAA;CACpB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
|
|
2
|
+
import type { XLineEntity } from './types.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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,0BAA0B,CAAA;AAQ7E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAqB7C,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,aAAa,SAAU;IAC9B,OAAO,CAAC,MAAM,CAA0C;IAExD,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,WAAW;CAE/B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Point3D } from '../../../types/shared.ts';
|
|
2
|
+
import type { CommonDxfEntity } from '../shared.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/xline/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,WAAY,SAAQ,eAAe;IAClD,IAAI,EAAE,OAAO,CAAA;IACb,cAAc,EAAE,WAAW,CAAA;IAC3B,QAAQ,EAAE,OAAO,CAAA;IACjB,SAAS,EAAE,OAAO,CAAA;CACnB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ColorIndex, ColorInstance } from '../types/color.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAcadColor.d.ts","sourceRoot":"","sources":["../../../../src/parser/getAcadColor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAGlE;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,UAAU,GAAG,aAAa,CAE7D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/header/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAK1E,wBAAgB,WAAW,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,OAuBvE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum RecordCloneFlag {
|
|
2
|
+
/** Not applicable: Unrelated to duplication */
|
|
3
|
+
NOT_APPLICABLE = 0,
|
|
4
|
+
/** Keep existing: When collided, keep previousely existed one and ignore cloned one */
|
|
5
|
+
KEEP_EXISTING = 1,
|
|
6
|
+
/** Use clone: When collided, use cloned one and ignore previousely existed one */
|
|
7
|
+
USE_CLONE = 2,
|
|
8
|
+
/** Change cloned name into <xref>$0$<name> */
|
|
9
|
+
XREF_VALUE_NAME = 3,
|
|
10
|
+
/** Change cloned name into $0$<name> */
|
|
11
|
+
VALUE_NAME = 4,
|
|
12
|
+
/** Unmangle name: Just use collided name- it maybe dangerous */
|
|
13
|
+
UNMANGLE_NAME = 5
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=consts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACzB,+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;CAClB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/dictionary/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAGjB,MAAM,iCAAiC,CAAA;AAIxC,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EAwChD,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { CommonDXFObject } from '../types.ts';
|
|
2
|
+
import type { RecordCloneFlag } from '../consts.ts';
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/dictionary/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D,cAAc,EAAE,gBAAgB,CAAA;IAChC,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,eAAe,EAAE,eAAe,CAAA;IAChC,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;CAC1E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/dimassoc/parser.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AASvE,eAAO,MAAM,gBAAgB,EAAE,gBAAgB,EAsC9C,CAAA"}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import type { Point3D } from '../../../types/shared.ts';
|
|
2
|
+
import type { CommonDXFObject } from '../types.ts';
|
|
3
|
+
/**
|
|
4
|
+
* One DIMASSOC point-reference block (`AcDbOsnapPointRef`) mapped from DXF group codes.
|
|
5
|
+
*
|
|
6
|
+
* Reference:
|
|
7
|
+
* https://help.autodesk.com/cloudhelp/2024/ENU/AutoCAD-DXF/files/GUID-C0B96256-A911-4B4D-85E6-EB4AF2C91E27.htm
|
|
8
|
+
*/
|
|
9
|
+
export interface DimAssocPointRef {
|
|
10
|
+
/**
|
|
11
|
+
* Group code 1: point-reference class name.
|
|
12
|
+
* Expected value: `AcDbOsnapPointRef`.
|
|
13
|
+
*/
|
|
14
|
+
className: 'AcDbOsnapPointRef';
|
|
15
|
+
/**
|
|
16
|
+
* Group code 72: Object Osnap type.
|
|
17
|
+
* 0=None, 1=Endpoint, 2=Midpoint, 3=Center, 4=Node, 5=Quadrant,
|
|
18
|
+
* 6=Intersection, 7=Insertion, 8=Perpendicular, 9=Tangent,
|
|
19
|
+
* 10=Nearest, 11=Apparent intersection, 12=Parallel, 13=Start point.
|
|
20
|
+
*/
|
|
21
|
+
objectOsnapType?: number;
|
|
22
|
+
/**
|
|
23
|
+
* Group code 331: handle/ID of the main geometry object.
|
|
24
|
+
*/
|
|
25
|
+
mainObjectId?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Group code 73: subentity type of the main object (for example, edge/face).
|
|
28
|
+
*/
|
|
29
|
+
mainObjectSubentityType?: number;
|
|
30
|
+
/**
|
|
31
|
+
* Group code 91: GS marker index of the main object.
|
|
32
|
+
*/
|
|
33
|
+
mainObjectGsMarker?: number;
|
|
34
|
+
/**
|
|
35
|
+
* Group code 301: Xref object handle string for the main object.
|
|
36
|
+
*/
|
|
37
|
+
mainObjectXrefHandle?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Group code 40: geometry parameter used for Near Osnap.
|
|
40
|
+
*/
|
|
41
|
+
nearOsnapGeometryParameter?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Group codes 10/20/30: Osnap point in WCS coordinates.
|
|
44
|
+
* 10=X, 20=Y, 30=Z.
|
|
45
|
+
*/
|
|
46
|
+
osnapPoint?: Point3D;
|
|
47
|
+
/**
|
|
48
|
+
* Group code 332: handle/ID of the intersection geometry object.
|
|
49
|
+
*/
|
|
50
|
+
intersectionObjectId?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Group code 74: subentity type of the intersection object (for example, edge/face).
|
|
53
|
+
*/
|
|
54
|
+
intersectionObjectSubentityType?: number;
|
|
55
|
+
/**
|
|
56
|
+
* Group code 92: GS marker index of the intersection object.
|
|
57
|
+
*/
|
|
58
|
+
intersectionObjectGsMarker?: number;
|
|
59
|
+
/**
|
|
60
|
+
* Group code 302: Xref object handle string for the intersection object.
|
|
61
|
+
*/
|
|
62
|
+
intersectionObjectXrefHandle?: string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* DIMASSOC object fields mapped from AutoCAD DXF group codes.
|
|
66
|
+
*
|
|
67
|
+
* Reference:
|
|
68
|
+
* https://help.autodesk.com/cloudhelp/2024/ENU/AutoCAD-DXF/files/GUID-C0B96256-A911-4B4D-85E6-EB4AF2C91E27.htm
|
|
69
|
+
*/
|
|
70
|
+
export interface DimAssocDXFObject extends CommonDXFObject {
|
|
71
|
+
/**
|
|
72
|
+
* Group code 100: subclass marker for this object.
|
|
73
|
+
* Expected value: `AcDbDimAssoc`.
|
|
74
|
+
*/
|
|
75
|
+
subclassMarker: 'AcDbDimAssoc';
|
|
76
|
+
/**
|
|
77
|
+
* Group code 330: handle/ID of the related DIMENSION entity.
|
|
78
|
+
*/
|
|
79
|
+
dimensionObjectId?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Group code 90: associativity bit flag.
|
|
82
|
+
* 1=first point reference, 2=second, 4=third, 8=fourth.
|
|
83
|
+
*/
|
|
84
|
+
associativityFlag?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Group code 70: trans-space flag.
|
|
87
|
+
* `true` means trans-space association is enabled.
|
|
88
|
+
*/
|
|
89
|
+
transSpaceFlag?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* Group code 71: rotated dimension type (parallel/perpendicular).
|
|
92
|
+
*/
|
|
93
|
+
rotatedDimensionType?: number;
|
|
94
|
+
/**
|
|
95
|
+
* Group code 75: hasLastPointRef flag.
|
|
96
|
+
* `true` means the DIMASSOC object includes the "last point reference" marker.
|
|
97
|
+
*/
|
|
98
|
+
hasLastPointRef?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Group code 1 (repeated): point-reference records (`AcDbOsnapPointRef`).
|
|
101
|
+
* One entry exists for each dimension association point serialized in this DIMASSOC object.
|
|
102
|
+
*/
|
|
103
|
+
pointRefs?: DimAssocPointRef[];
|
|
104
|
+
}
|
|
105
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/dimassoc/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAElD;;;;;GAKG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,SAAS,EAAE,mBAAmB,CAAA;IAE9B;;;;;OAKG;IACH,eAAe,CAAC,EAAE,MAAM,CAAA;IAExB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAA;IAErB;;OAEG;IACH,uBAAuB,CAAC,EAAE,MAAM,CAAA;IAEhC;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAE3B;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAE7B;;OAEG;IACH,0BAA0B,CAAC,EAAE,MAAM,CAAA;IAEnC;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAE7B;;OAEG;IACH,+BAA+B,CAAC,EAAE,MAAM,CAAA;IAExC;;OAEG;IACH,0BAA0B,CAAC,EAAE,MAAM,CAAA;IAEnC;;OAEG;IACH,4BAA4B,CAAC,EAAE,MAAM,CAAA;CACtC;AAED;;;;;GAKG;AACH,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD;;;OAGG;IACH,cAAc,EAAE,cAAc,CAAA;IAE9B;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAE1B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAE1B;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAA;IAExB;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAE7B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;IAEzB;;;OAGG;IACH,SAAS,CAAC,EAAE,gBAAgB,EAAE,CAAA;CAC/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/group/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAOvE,eAAO,MAAM,aAAa,EAAE,gBAAgB,EA4B3C,CAAA"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { CommonDXFObject } from '../types.ts';
|
|
2
|
+
/**
|
|
3
|
+
* GROUP object fields mapped from AutoCAD DXF group codes.
|
|
4
|
+
*
|
|
5
|
+
* Reference:
|
|
6
|
+
* https://help.autodesk.com/view/OARX/2024/ENU/?guid=GUID-5F1372C4-37C8-4056-9303-EE1715F58E67
|
|
7
|
+
*/
|
|
8
|
+
export interface GroupDXFObject extends CommonDXFObject {
|
|
9
|
+
/**
|
|
10
|
+
* Group code 100: subclass marker for this object.
|
|
11
|
+
* Expected value: `AcDbGroup`.
|
|
12
|
+
*/
|
|
13
|
+
subclassMarker: 'AcDbGroup';
|
|
14
|
+
/**
|
|
15
|
+
* Group code 300: user-visible group description text.
|
|
16
|
+
*/
|
|
17
|
+
description?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Group code 70: unnamed flag.
|
|
20
|
+
* `true` means unnamed (DXF value 1), `false` means named (DXF value 0).
|
|
21
|
+
*/
|
|
22
|
+
isUnnamed?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Group code 71: selectability flag.
|
|
25
|
+
* `true` means selectable (DXF value 1), `false` means not selectable (DXF value 0).
|
|
26
|
+
*/
|
|
27
|
+
isSelectable?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Group code 340 (repeated): hard-pointer handles to member entities.
|
|
30
|
+
* One handle is written for each entity included in this group.
|
|
31
|
+
*/
|
|
32
|
+
entityIds?: string[];
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/group/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAElD;;;;;GAKG;AACH,MAAM,WAAW,cAAe,SAAQ,eAAe;IACrD;;;OAGG;IACH,cAAc,EAAE,WAAW,CAAA;IAE3B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;CACrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/imageDef/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC9B,MAAM,IAAI;IACV,WAAW,IAAI;IACf,IAAI,IAAI;CACT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/imageDef/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAGjB,MAAM,iCAAiC,CAAC;AAEzC,eAAO,MAAM,gBAAgB,EAAE,gBAAgB,EAmC9C,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Point2D } from '../../../types/shared.ts';
|
|
2
|
+
import type { CommonDXFObject } from '../types.ts';
|
|
3
|
+
import { ImageResolutionUnits } from './consts.ts';
|
|
4
|
+
export interface ImageDefDXFObject extends CommonDXFObject {
|
|
5
|
+
subclassMarker: 'AcDbRasterImageDef';
|
|
6
|
+
fileName: string;
|
|
7
|
+
size: Point2D;
|
|
8
|
+
sizeOfOnePixel: Point2D;
|
|
9
|
+
isLoaded: number;
|
|
10
|
+
resolutionUnits: number;
|
|
11
|
+
}
|
|
12
|
+
export { ImageResolutionUnits };
|
|
13
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/imageDef/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEnD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,cAAc,EAAE,oBAAoB,CAAC;IACrC,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;IACd,cAAc,EAAE,OAAO,CAAC;IACxB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,OAAO,EAAE,oBAAoB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/layer_filter/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAIvE,eAAO,MAAM,mBAAmB,EAAE,gBAAgB,EAkBjD,CAAA"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { CommonDXFObject } from '../types.ts';
|
|
2
|
+
/**
|
|
3
|
+
* LAYER_FILTER object fields mapped from AutoCAD DXF group codes.
|
|
4
|
+
*
|
|
5
|
+
* Reference:
|
|
6
|
+
* https://help.autodesk.com/cloudhelp/2024/ENU/AutoCAD-DXF/files/GUID-3B44DCFD-FA96-482B-8468-37B3C5B5F289.htm
|
|
7
|
+
*/
|
|
8
|
+
export interface LayerFilterDXFObject extends CommonDXFObject {
|
|
9
|
+
/**
|
|
10
|
+
* Group code 100: base subclass marker for filter objects.
|
|
11
|
+
* Expected value: `AcDbFilter`.
|
|
12
|
+
*/
|
|
13
|
+
filterSubclassMarker: 'AcDbFilter';
|
|
14
|
+
/**
|
|
15
|
+
* Group code 100: subclass marker for this object.
|
|
16
|
+
* Expected value: `AcDbLayerFilter`.
|
|
17
|
+
*/
|
|
18
|
+
subclassMarker: 'AcDbLayerFilter';
|
|
19
|
+
/**
|
|
20
|
+
* Group code 8 (repeated): layer names included in this filter.
|
|
21
|
+
* Multiple entries may exist in a single LAYER_FILTER object.
|
|
22
|
+
*/
|
|
23
|
+
layerNames?: string[];
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/layer_filter/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAElD;;;;;GAKG;AACH,MAAM,WAAW,oBAAqB,SAAQ,eAAe;IAC3D;;;OAGG;IACH,oBAAoB,EAAE,YAAY,CAAA;IAElC;;;OAGG;IACH,cAAc,EAAE,iBAAiB,CAAA;IAEjC;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/objects/layer_index/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAIvE,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EAmChD,CAAA"}
|