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
|
@@ -1,912 +0,0 @@
|
|
|
1
|
-
import type { DimensionAngularUnit, DimensionFractionFormat, DimensionTextFill, DimensionTextHorizontal, DimensionTextVertical, DimensionUnit, DimensionZeroSuppression, DimensionZeroSuppressionAngular } from '../../../consts';
|
|
2
|
-
import type { ArcSymbolType } from '../../entities/arc_dimension';
|
|
3
|
-
import type { CommonDxfTableEntry } from '../types';
|
|
4
|
-
/**
|
|
5
|
-
* Union of all possible dimension style variable names.
|
|
6
|
-
*
|
|
7
|
-
* @see DimStyleVariables
|
|
8
|
-
* @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=GUID-F2FAD36F-0CE3-4943-9DAD-A9BCD2AE81DA
|
|
9
|
-
*/
|
|
10
|
-
export type DimStyleVariable = 'DIMPOST' | 'DIMAPOST' | 'DIMBLK_OBSOLETE' | 'DIMBLK1_OBSOLETE' | 'DIMBLK2_OBSOLETE' | 'DIMSCALE' | 'DIMASZ' | 'DIMEXO' | 'DIMDLI' | 'DIMEXE' | 'DIMRND' | 'DIMDLE' | 'DIMTP' | 'DIMTM' | 'DIMFXL' | 'DIMJOGANG' | 'DIMTFILL' | 'DIMTFILLCLR' | 'DIMTOL' | 'DIMLIM' | 'DIMTIH' | 'DIMTOH' | 'DIMSE1' | 'DIMSE2' | 'DIMTAD' | 'DIMZIN' | 'DIMAZIN' | 'DIMARCSYM' | 'DIMTXT' | 'DIMCEN' | 'DIMTSZ' | 'DIMALTF' | 'DIMLFAC' | 'DIMTVP' | 'DIMTFAC' | 'DIMGAP' | 'DIMALTRND' | 'DIMALT' | 'DIMALTD' | 'DIMTOFL' | 'DIMSAH' | 'DIMTIX' | 'DIMSOXD' | 'DIMCLRD' | 'DIMCLRE' | 'DIMCLRT' | 'DIMADEC' | 'DIMUNIT' | 'DIMDEC' | 'DIMTDEC' | 'DIMALTU' | 'DIMALTTD' | 'DIMAUNIT' | 'DIMFRAC' | 'DIMLUNIT' | 'DIMDSEP' | 'DIMTMOVE' | 'DIMJUST' | 'DIMSD1' | 'DIMSD2' | 'DIMTOLJ' | 'DIMTZIN' | 'DIMALTZ' | 'DIMALTTZ' | 'DIMFIT' | 'DIMUPT' | 'DIMATFIT' | 'DIMFXLON' | 'DIMTXTDIRECTION' | 'DIMTXSTY' | 'DIMLDRBLK' | 'DIMBLK' | 'DIMBLK1' | 'DIMBLK2' | 'DIMLTYPE' | 'DIMLTEX1' | 'DIMLTEX2' | 'DIMLWD' | 'DIMLWE';
|
|
11
|
-
export interface DimStyleVariableSchema {
|
|
12
|
-
name: string;
|
|
13
|
-
code: number;
|
|
14
|
-
defaultValue?: string | number;
|
|
15
|
-
defaultValueImperial?: string | number;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* Key-value pairs of dimension style variables. Useful when combined with `DimStyleVariable`.
|
|
19
|
-
*
|
|
20
|
-
* @see DimStyleVariable
|
|
21
|
-
*/
|
|
22
|
-
export type DimStyleVariables = {
|
|
23
|
-
/**
|
|
24
|
-
* Specifies a text prefix or suffix (or both) to the dimension measurement.
|
|
25
|
-
*
|
|
26
|
-
* For example, to establish a suffix for millimeters, set `DIMPOST` to mm;
|
|
27
|
-
* a distance of 19.2 units would be displayed as `19.2 mm`.
|
|
28
|
-
*
|
|
29
|
-
* If tolerances are turned on, the suffix is applied to the tolerances as well as to
|
|
30
|
-
* the main dimension.
|
|
31
|
-
*
|
|
32
|
-
* Use `<>` to indicate placement of the text in relation to the dimension value.
|
|
33
|
-
* Use the `<>` mechanism for angular dimensions.
|
|
34
|
-
*
|
|
35
|
-
* Parsed by group code `3`
|
|
36
|
-
*
|
|
37
|
-
* @example
|
|
38
|
-
* ```
|
|
39
|
-
* "<>mm" → "5.0mm"
|
|
40
|
-
* "mm <>" → "mm 5.0"
|
|
41
|
-
* ```
|
|
42
|
-
*
|
|
43
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-79CCF9B1-BE33-4158-891C-50E4BF795D8E
|
|
44
|
-
*/
|
|
45
|
-
DIMPOST?: string;
|
|
46
|
-
/**
|
|
47
|
-
* Specifies a text prefix or suffix (or both) to the alternate dimension measurement
|
|
48
|
-
* for all types of dimensions **except angular**.
|
|
49
|
-
*
|
|
50
|
-
* For instance, if the current units are `Architectural`, `DIMALT` is on, `DIMALTF` is 25.4
|
|
51
|
-
* (the number of millimeters per inch), `DIMALTD` is `2`, and `DIMAPOST` is set to `"mm"`,
|
|
52
|
-
* a distance of 10 units would be displayed as `10"[254.00mm]`.
|
|
53
|
-
*
|
|
54
|
-
* Parsed by group code `4`
|
|
55
|
-
*
|
|
56
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-AEA9448D-CC01-404B-AFA0-055B9C2F21EE
|
|
57
|
-
*/
|
|
58
|
-
DIMAPOST?: string;
|
|
59
|
-
/**
|
|
60
|
-
* Obsolete. Use `DIMBLK` instead.
|
|
61
|
-
*
|
|
62
|
-
* Parsed by group code `5`
|
|
63
|
-
*/
|
|
64
|
-
DIMBLK_OBSOLETE?: string;
|
|
65
|
-
/**
|
|
66
|
-
* Obsolete. Use `DIMBLK1` instead.
|
|
67
|
-
*
|
|
68
|
-
* Parsed by group code `6`
|
|
69
|
-
*/
|
|
70
|
-
DIMBLK1_OBSOLETE?: string;
|
|
71
|
-
/**
|
|
72
|
-
* Obsolete. Use `DIMBLK1` instead.
|
|
73
|
-
*
|
|
74
|
-
* Parsed by group code `7`
|
|
75
|
-
*/
|
|
76
|
-
DIMBLK2_OBSOLETE?: string;
|
|
77
|
-
/**
|
|
78
|
-
* Sets the overall scale factor applied to dimensioning variables that specify sizes,
|
|
79
|
-
* distances, or offsets.
|
|
80
|
-
*
|
|
81
|
-
* Affects `DIMENSION`, `ARC_DIMENSION`, `LEADER` and `MLEADER`.
|
|
82
|
-
*
|
|
83
|
-
* `DIMSCALE` does not affect measured lengths, coordinates, or angles.
|
|
84
|
-
*
|
|
85
|
-
* If the current dimension style is annotative, `DIMSCALE` is automatically set to zero
|
|
86
|
-
* and the dimension scale is controlled by the `CANNOSCALE` system variable.
|
|
87
|
-
*
|
|
88
|
-
* `DIMSCALE` cannot be set to a non-zero value when using annotative dimensions.
|
|
89
|
-
*
|
|
90
|
-
* - `0`: A reasonable default value is computed based on the scaling between the current
|
|
91
|
-
* model space viewport and paper space. If you are in paper space or model space and
|
|
92
|
-
* not using the paper space feature, the scale factor is `1.0`.
|
|
93
|
-
* - otherwise: A scale factor is computed that leads text sizes, arrowhead sizes, and other
|
|
94
|
-
* scaled distances to plot at their face values.
|
|
95
|
-
*
|
|
96
|
-
* Parsed by group code `40`
|
|
97
|
-
*
|
|
98
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-AEA309F0-B831-4432-8085-FB6CD49CDC78
|
|
99
|
-
*/
|
|
100
|
-
DIMSCALE: number;
|
|
101
|
-
/**
|
|
102
|
-
* Controls the size of dimension line and leader line arrowheads. Also controls the size of hook lines.
|
|
103
|
-
*
|
|
104
|
-
* Multiples of the arrowhead size determine whether dimension lines and text should fit between
|
|
105
|
-
* the extension lines. `DIMASZ` is also used to scale arrowhead blocks if set by `DIMBLK`.
|
|
106
|
-
*
|
|
107
|
-
* `DIMASZ` has no effect when `DIMTSZ` is other than zero.
|
|
108
|
-
*
|
|
109
|
-
* Parsed by group code `41`
|
|
110
|
-
*
|
|
111
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-43E31690-BA17-4AD6-82D1-E7809BD1298A
|
|
112
|
-
*/
|
|
113
|
-
DIMASZ: number;
|
|
114
|
-
/**
|
|
115
|
-
* Specifies how far extension lines are offset from origin points.
|
|
116
|
-
*
|
|
117
|
-
* With fixed-length extension lines, this value determines the minimum offset.
|
|
118
|
-
*
|
|
119
|
-
* Parsed by group code `42`
|
|
120
|
-
*
|
|
121
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-5CF50ABD-1F77-4609-BEB5-A129BF7DD746
|
|
122
|
-
*/
|
|
123
|
-
DIMEXO: number;
|
|
124
|
-
/**
|
|
125
|
-
* Controls the spacing of the dimension lines in baseline dimensions.
|
|
126
|
-
*
|
|
127
|
-
* Each dimension line is offset from the previous one by this amount, if necessary, to avoid drawing over it.
|
|
128
|
-
*
|
|
129
|
-
* Changes made with `DIMDLI` are not applied to existing dimensions.
|
|
130
|
-
*
|
|
131
|
-
* Parsed by group code `43`
|
|
132
|
-
*
|
|
133
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-D2D1AF3D-004B-4C47-BABE-22B7327EE128
|
|
134
|
-
*/
|
|
135
|
-
DIMDLI: number;
|
|
136
|
-
/**
|
|
137
|
-
* Specifies how far to extend the extension line beyond the dimension line.
|
|
138
|
-
*
|
|
139
|
-
* Parsed by group code `44`
|
|
140
|
-
*
|
|
141
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-508D4589-3C3E-4B5E-BA2C-539809197A71
|
|
142
|
-
*/
|
|
143
|
-
DIMEXE: number;
|
|
144
|
-
/**
|
|
145
|
-
* Rounds all dimensioning distances to the specified value.
|
|
146
|
-
*
|
|
147
|
-
* For instance, if `DIMRND` is set to `0.25`, all distances round to the nearest `0.25` unit.
|
|
148
|
-
* If you set `DIMRND` to `1.0`, all distances round to the nearest integer.
|
|
149
|
-
*
|
|
150
|
-
* Note that the number of digits edited after the decimal point depends on the precision
|
|
151
|
-
* set by `DIMDEC`.
|
|
152
|
-
*
|
|
153
|
-
* `DIMRND` does not apply to angular dimensions.
|
|
154
|
-
*
|
|
155
|
-
* Parsed by group code `45`
|
|
156
|
-
*
|
|
157
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-215CF615-1AA7-45E5-9D0F-CF9693ABCCB9
|
|
158
|
-
*/
|
|
159
|
-
DIMRND: number;
|
|
160
|
-
/**
|
|
161
|
-
* Sets the distance the dimension line extends beyond the extension line when oblique strokes
|
|
162
|
-
* are drawn instead of arrowheads.
|
|
163
|
-
*
|
|
164
|
-
* Parsed by group code `46`
|
|
165
|
-
*
|
|
166
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-C66183C7-D872-41F2-8815-D7479F2A87F6
|
|
167
|
-
*/
|
|
168
|
-
DIMDLE: number;
|
|
169
|
-
/**
|
|
170
|
-
* Sets the maximum (or upper) tolerance limit for dimension text when `DIMTOL` or `DIMLIM` is on.
|
|
171
|
-
*
|
|
172
|
-
* `DIMTP` accepts signed values. If `DIMTOL` is on and `DIMTP` and `DIMTM` are set to the
|
|
173
|
-
* same value, a tolerance value is drawn.
|
|
174
|
-
*
|
|
175
|
-
* If `DIMTM` and `DIMTP` values differ, the upper tolerance is drawn above the lower and a plus
|
|
176
|
-
* sign is added to the `DIMTP` value if it is positive.
|
|
177
|
-
*
|
|
178
|
-
* Parsed by group code `47`
|
|
179
|
-
*
|
|
180
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-635300D6-9738-44C4-A0B6-176F194533B3
|
|
181
|
-
*/
|
|
182
|
-
DIMTP: number;
|
|
183
|
-
/**
|
|
184
|
-
* Sets the minimum (or lower) tolerance limit for dimension text when `DIMTOL` or `DIMLIM` is on.
|
|
185
|
-
*
|
|
186
|
-
* `DIMTM` accepts signed values. If `DIMTOL` is on and `DIMTP` and `DIMTM` are set to the same value,
|
|
187
|
-
* a tolerance value is drawn.
|
|
188
|
-
*
|
|
189
|
-
* If `DIMTM` and `DIMTP` values differ, the upper tolerance is drawn above the lower, and a plus
|
|
190
|
-
* sign is added to the `DIMTP` value if it is positive.
|
|
191
|
-
*
|
|
192
|
-
* For `DIMTM`, the program uses the negative of the value you enter (adding a minus sign if you
|
|
193
|
-
* specify a positive number and a plus sign if you specify a negative number).
|
|
194
|
-
*
|
|
195
|
-
* Parsed by group code `48`
|
|
196
|
-
*
|
|
197
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-E2AAD7FB-C563-42A8-B7B4-3A3EC8AA8C68
|
|
198
|
-
*/
|
|
199
|
-
DIMTM: number;
|
|
200
|
-
/**
|
|
201
|
-
* Sets the total length of the extension lines starting from the dimension line toward the dimension origin.
|
|
202
|
-
*
|
|
203
|
-
* Parsed by group code `49`
|
|
204
|
-
*
|
|
205
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-CC0F54D4-688B-4A14-9926-9840BCB30FCA
|
|
206
|
-
*/
|
|
207
|
-
DIMFXL: number;
|
|
208
|
-
/**
|
|
209
|
-
* Determines the angle of the transverse segment of the dimension line in a jogged radius dimension.
|
|
210
|
-
*
|
|
211
|
-
* Jogged radius dimensions are often created when the center point is located off the page.
|
|
212
|
-
*
|
|
213
|
-
* Valid settings range is `5` to `90`.
|
|
214
|
-
*
|
|
215
|
-
* Parsed by group code `50`
|
|
216
|
-
*
|
|
217
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-9C23D722-0792-4585-A40A-B8E3A191999A
|
|
218
|
-
*/
|
|
219
|
-
DIMJOGANG: number;
|
|
220
|
-
/**
|
|
221
|
-
* Controls the background of dimension text.
|
|
222
|
-
*
|
|
223
|
-
* Parsed by group code `69`
|
|
224
|
-
*
|
|
225
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-4E38E29F-DE85-4791-A2E7-4DC22842B1B4
|
|
226
|
-
*/
|
|
227
|
-
DIMTFILL: DimensionTextFill;
|
|
228
|
-
/**
|
|
229
|
-
* Sets the color for the text background in dimensions.
|
|
230
|
-
*
|
|
231
|
-
* Color numbers are displayed in the Select Color dialog box.
|
|
232
|
-
*
|
|
233
|
-
* - `0`: BYBLOCK
|
|
234
|
-
* - `256`: BYLAYER
|
|
235
|
-
* - `1-255`: ACI color number
|
|
236
|
-
*
|
|
237
|
-
* Parsed by group code `70`
|
|
238
|
-
*
|
|
239
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-FF6E5A28-35F0-4998-BC72-9EFD4EACCE18
|
|
240
|
-
*/
|
|
241
|
-
DIMTFILLCLR: number;
|
|
242
|
-
/**
|
|
243
|
-
* Appends tolerances to dimension text.
|
|
244
|
-
*
|
|
245
|
-
* Setting `DIMTOL` to on (`1`) turns `DIMLIM` off (`0`).
|
|
246
|
-
*
|
|
247
|
-
* Parsed by group code `71`
|
|
248
|
-
*
|
|
249
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-1FA5DC50-8D40-49A5-9A79-08A4E01D6178
|
|
250
|
-
*/
|
|
251
|
-
DIMTOL: number;
|
|
252
|
-
/**
|
|
253
|
-
* Generates dimension limits as the default text.
|
|
254
|
-
*
|
|
255
|
-
* Setting `DIMLIM` to On turns `DIMTOL` off.
|
|
256
|
-
*
|
|
257
|
-
* Parsed by group code `72`
|
|
258
|
-
*
|
|
259
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-271D1152-D76D-4FD1-B91B-50F8671012A4
|
|
260
|
-
*/
|
|
261
|
-
DIMLIM: number;
|
|
262
|
-
/**
|
|
263
|
-
* Controls the position of dimension text inside the extension lines for all dimension types
|
|
264
|
-
* **except Ordinate**.
|
|
265
|
-
*
|
|
266
|
-
* - `0` Aligns text with the dimension line
|
|
267
|
-
* - `1` Draws text horizontally
|
|
268
|
-
*
|
|
269
|
-
* Parsed by group code `73`
|
|
270
|
-
*
|
|
271
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-60CFA531-80FD-45EF-B529-F4FAF5C758B3
|
|
272
|
-
*/
|
|
273
|
-
DIMTIH: number;
|
|
274
|
-
/**
|
|
275
|
-
* Controls the position of dimension text outside the extension lines.
|
|
276
|
-
*
|
|
277
|
-
* - `0` Aligns text with the dimension line
|
|
278
|
-
* - `1` Draws text horizontally
|
|
279
|
-
*
|
|
280
|
-
* Parsed by group code `74`
|
|
281
|
-
*
|
|
282
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-71B03AC9-ADC1-4859-A9CD-85247BACABBE
|
|
283
|
-
*/
|
|
284
|
-
DIMTOH: number;
|
|
285
|
-
/**
|
|
286
|
-
* Suppresses display of the first extension line.
|
|
287
|
-
*
|
|
288
|
-
* - `0` Extension line is not suppressed
|
|
289
|
-
* - `1` Extension line is suppressed
|
|
290
|
-
*
|
|
291
|
-
* Parsed by group code `75`
|
|
292
|
-
*
|
|
293
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-491A0E6F-0387-4169-BCB9-40F2432C0B99
|
|
294
|
-
*/
|
|
295
|
-
DIMSE1: 0 | 1;
|
|
296
|
-
/**
|
|
297
|
-
* Suppresses display of the second extension line.
|
|
298
|
-
*
|
|
299
|
-
* - `0` Extension line is not suppressed
|
|
300
|
-
* - `1` Extension line is suppressed
|
|
301
|
-
*
|
|
302
|
-
* Parsed by group code `76`
|
|
303
|
-
*
|
|
304
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-A2711B05-7F7E-472C-B53E-03B1F168FFEB
|
|
305
|
-
*/
|
|
306
|
-
DIMSE2: 0 | 1;
|
|
307
|
-
/**
|
|
308
|
-
* Controls the vertical position of text in relation to the dimension line.
|
|
309
|
-
*
|
|
310
|
-
* Parsed by group code `77`
|
|
311
|
-
*
|
|
312
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-60D1241D-CEA7-4493-BD6A-4EF433F3C946
|
|
313
|
-
*/
|
|
314
|
-
DIMTAD: DimensionTextVertical;
|
|
315
|
-
/**
|
|
316
|
-
* Controls the suppression of zeros in the primary unit value.
|
|
317
|
-
*
|
|
318
|
-
* Values `0` ~ `3` affect feet-and-inch dimensions only
|
|
319
|
-
*
|
|
320
|
-
* Parsed by group code `78`
|
|
321
|
-
*
|
|
322
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-A1860981-FE1C-4947-927B-7CD6B8CEF8EE
|
|
323
|
-
*/
|
|
324
|
-
DIMZIN: DimensionZeroSuppression;
|
|
325
|
-
/**
|
|
326
|
-
* Suppresses zeros for angular dimensions.
|
|
327
|
-
*
|
|
328
|
-
* Parsed by group code `79`
|
|
329
|
-
*
|
|
330
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-69E9BFD3-06A4-468D-88F0-7C9741407194
|
|
331
|
-
*/
|
|
332
|
-
DIMAZIN: DimensionZeroSuppressionAngular;
|
|
333
|
-
/**
|
|
334
|
-
* Controls display of the arc symbol in an arc length dimension.
|
|
335
|
-
*
|
|
336
|
-
* Parsed by group code `90`
|
|
337
|
-
*
|
|
338
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-1B843AB0-7976-4DD9-9464-6B0A71A34D81
|
|
339
|
-
*/
|
|
340
|
-
DIMARCSYM: ArcSymbolType;
|
|
341
|
-
/**
|
|
342
|
-
* Specifies the height of dimension text, unless the current text style has a fixed height.
|
|
343
|
-
*
|
|
344
|
-
* Parsed by group code `140`
|
|
345
|
-
*
|
|
346
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-A17A69D7-25EF-4F57-B4EB-D53A56AB909C
|
|
347
|
-
*/
|
|
348
|
-
DIMTXT: number;
|
|
349
|
-
/**
|
|
350
|
-
* Controls drawing of circle or arc center marks and centerlines by the `DIMCENTER`, `DIMDIAMETER`, and `DIMRADIUS` commands.
|
|
351
|
-
*
|
|
352
|
-
* For `DIMDIAMETER` and `DIMRADIUS`, the center mark is drawn only if you place the dimension line outside the circle or arc.
|
|
353
|
-
*
|
|
354
|
-
* - `= 0` No center marks or lines are drawn
|
|
355
|
-
* - `< 0` Centerlines are drawn
|
|
356
|
-
* - `> 0` Center marks are drawn
|
|
357
|
-
*
|
|
358
|
-
* Parsed by group code `141`
|
|
359
|
-
*
|
|
360
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-19D6EC14-F800-48FC-B459-28E5E7F81DBB
|
|
361
|
-
*/
|
|
362
|
-
DIMCEN: number;
|
|
363
|
-
/**
|
|
364
|
-
* Specifies the size of oblique strokes drawn instead of arrowheads for linear, radius, and diameter dimensioning.
|
|
365
|
-
*
|
|
366
|
-
* - `= 0` Draws arrowheads.
|
|
367
|
-
* - `> 0` Draws oblique strokes instead of arrowheads. The size of the oblique strokes is determined by this value multiplied by the `DIMSCALE` value.
|
|
368
|
-
*
|
|
369
|
-
* Parsed by group code `142`
|
|
370
|
-
*
|
|
371
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-D225D167-A66B-4617-BC59-C1385069D152
|
|
372
|
-
*/
|
|
373
|
-
DIMTSZ: number;
|
|
374
|
-
/**
|
|
375
|
-
* Controls the multiplier for alternate units.
|
|
376
|
-
*
|
|
377
|
-
* If `DIMALT` is turned on, `DIMALTF` multiplies linear dimensions by a factor to produce a value
|
|
378
|
-
* in an alternate system of measurement. The initial value represents the number of millimeters in an inch.
|
|
379
|
-
*
|
|
380
|
-
* Parsed by group code `143`
|
|
381
|
-
*
|
|
382
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-4BB25870-8BFF-478D-8C04-88457311AAF2
|
|
383
|
-
*/
|
|
384
|
-
DIMALTF: number;
|
|
385
|
-
/**
|
|
386
|
-
* All linear dimension distances, including radial, diameters, and coordinates, are multiplied by
|
|
387
|
-
* `DIMLFAC` before being converted to dimension text.
|
|
388
|
-
*
|
|
389
|
-
* - `> 0` applied to dimensions in both model space and paper space
|
|
390
|
-
* - `< 0` applied to paper space only
|
|
391
|
-
*
|
|
392
|
-
* `DIMLFAC` applies primarily to nonassociative dimensions (`DIMASSOC` set `0` or `1`). For nonassociative dimensions in paper space, `DIMLFAC` must be set individually for each
|
|
393
|
-
* layout viewport to accommodate viewport scaling.
|
|
394
|
-
*
|
|
395
|
-
* `DIMLFAC` has no effect on angular dimensions, and is not applied to the values held in `DIMRND`,
|
|
396
|
-
* `DIMTM`, or `DIMTP`.
|
|
397
|
-
*
|
|
398
|
-
* Parsed by group code `144`
|
|
399
|
-
*
|
|
400
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-B6063785-B199-4A9A-8BD7-2108EB0AB7ED
|
|
401
|
-
*/
|
|
402
|
-
DIMLFAC: number;
|
|
403
|
-
/**
|
|
404
|
-
* Controls the vertical position of dimension text above or below the dimension line.
|
|
405
|
-
*
|
|
406
|
-
* The `DIMTVP` value is used when `DIMTAD` is off. The magnitude of the vertical offset of text is
|
|
407
|
-
* the product of the text height and `DIMTVP`.
|
|
408
|
-
*
|
|
409
|
-
* Setting `DIMTVP` to `1.0` is equivalent to setting `DIMTAD` to on.
|
|
410
|
-
*
|
|
411
|
-
* The dimension line splits to accommodate the text only if the absolute value of `DIMTVP` is less than `0.7`.
|
|
412
|
-
*
|
|
413
|
-
* Parsed by group code `145`
|
|
414
|
-
*
|
|
415
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-248E5BFA-F355-4369-A889-291D77070B26
|
|
416
|
-
*/
|
|
417
|
-
DIMTVP: number;
|
|
418
|
-
/**
|
|
419
|
-
* Specifies a scale factor for the text height of fractions and tolerance values relative to the dimension
|
|
420
|
-
* text height, as set by `DIMTXT`.
|
|
421
|
-
*
|
|
422
|
-
* For example, if `DIMTFAC` is set to `1.0`, the text height of fractions and tolerances is the same height
|
|
423
|
-
* as the dimension text. If `DIMTFAC` is set to `0.7500`, the text height of fractions and tolerances is
|
|
424
|
-
* three-quarters the size of dimension text.
|
|
425
|
-
*
|
|
426
|
-
* Parsed by group code `146`
|
|
427
|
-
*
|
|
428
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-0D3CBEEB-CF89-4979-BE42-A123357188DE
|
|
429
|
-
*/
|
|
430
|
-
DIMTFAC: number;
|
|
431
|
-
/**
|
|
432
|
-
* Sets the distance around the dimension text when the dimension line breaks to accommodate dimension text.
|
|
433
|
-
*
|
|
434
|
-
* Also sets the gap between annotation and a hook line created with the LEADER command.
|
|
435
|
-
*
|
|
436
|
-
* If you enter a negative value, `DIMGAP` places a box around the dimension text.
|
|
437
|
-
*
|
|
438
|
-
* The value of `DIMGAP` is also used as the minimum length of each segment of the dimension line.
|
|
439
|
-
* To locate the components of a linear dimension within the extension lines, enough space must be
|
|
440
|
-
* available for both arrowheads (2 x `DIMASZ`), both dimension line segments (2 x `DIMGAP`), a
|
|
441
|
-
* gap on either side of the dimension text (another 2 x `DIMGAP`), and the length of the dimension text,
|
|
442
|
-
* which depends on its size and number of decimal places displayed.
|
|
443
|
-
*
|
|
444
|
-
* Parsed by group code `147`
|
|
445
|
-
*
|
|
446
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-EB367187-A5D6-404A-8121-A6D1D25B626A
|
|
447
|
-
*/
|
|
448
|
-
DIMGAP: number;
|
|
449
|
-
/**
|
|
450
|
-
* Rounds off the alternate dimension units.
|
|
451
|
-
*
|
|
452
|
-
* Parsed by group code `148`
|
|
453
|
-
*
|
|
454
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-B67093DA-6B0D-4E32-8A33-6298A770CAAF
|
|
455
|
-
*/
|
|
456
|
-
DIMALTRND: number;
|
|
457
|
-
/**
|
|
458
|
-
* Controls the display of alternate units in dimensions.
|
|
459
|
-
*
|
|
460
|
-
* - `0` Disables alternate units
|
|
461
|
-
* - `1` Enables alternate units
|
|
462
|
-
*
|
|
463
|
-
* Parsed by group code `170`
|
|
464
|
-
*
|
|
465
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-D3B737AB-53B7-431E-A794-746DD2EB6209
|
|
466
|
-
*/
|
|
467
|
-
DIMALT: 0 | 1;
|
|
468
|
-
/**
|
|
469
|
-
* Controls the number of decimal places in alternate units.
|
|
470
|
-
*
|
|
471
|
-
* If `DIMALT` is turned on, `DIMALTD` sets the number of digits displayed to the right of the
|
|
472
|
-
* decimal point in the alternate measurement.
|
|
473
|
-
*
|
|
474
|
-
* Parsed by group code `171`
|
|
475
|
-
*
|
|
476
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-DE3D35C1-C4AB-4A11-9F3A-6E5CF6EE9160
|
|
477
|
-
*/
|
|
478
|
-
DIMALTD: number;
|
|
479
|
-
/**
|
|
480
|
-
* Controls whether a dimension line is drawn between the extension lines even when the text
|
|
481
|
-
* is placed outside.
|
|
482
|
-
*
|
|
483
|
-
* For radius and diameter dimensions, a dimension line is drawn inside the circle or arc
|
|
484
|
-
* when the text, arrowheads, and leader are placed outside.
|
|
485
|
-
*
|
|
486
|
-
* - `0` Does not draw dimension lines between the measured points when arrowheads are placed
|
|
487
|
-
* outside the measured points
|
|
488
|
-
* - `1` Draws dimension lines between the measured points even when arrowheads are placed
|
|
489
|
-
* outside the measured points
|
|
490
|
-
*
|
|
491
|
-
* Parsed by group code `172`
|
|
492
|
-
*
|
|
493
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-40D7439D-C805-4373-879A-E19ACE97FE54
|
|
494
|
-
*/
|
|
495
|
-
DIMTOFL: 0 | 1;
|
|
496
|
-
/**
|
|
497
|
-
* Controls the display of dimension line arrowhead blocks.
|
|
498
|
-
*
|
|
499
|
-
* - `0` Use arrowhead blocks set by `DIMBLK`
|
|
500
|
-
* - `1` Use arrowhead blocks set by `DIMBLK1` and `DIMBLK2`
|
|
501
|
-
*
|
|
502
|
-
* Parsed by group code `173`
|
|
503
|
-
*
|
|
504
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-1B912FA4-3D88-42BC-93B4-D329DB5DBF1F
|
|
505
|
-
*/
|
|
506
|
-
DIMSAH: 0 | 1;
|
|
507
|
-
/**
|
|
508
|
-
* Draws text between extension lines.
|
|
509
|
-
*
|
|
510
|
-
* - `0` For linear and angular dimensions, dimension text is placed inside the extension lines if
|
|
511
|
-
* there is sufficient room.
|
|
512
|
-
* - `1` Draws dimension text between the extension lines even if it would ordinarily be placed
|
|
513
|
-
* outside those lines. For radius and diameter dimensions, `DIMTIX` on always forces the dimension
|
|
514
|
-
* text outside the circle or arc.
|
|
515
|
-
*
|
|
516
|
-
* Parsed by group code `174`
|
|
517
|
-
*
|
|
518
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-A553FB59-8741-4500-A7ED-15B02A1F3470
|
|
519
|
-
*/
|
|
520
|
-
DIMTIX: 0 | 1;
|
|
521
|
-
/**
|
|
522
|
-
* Suppresses arrowheads if not enough space is available inside the extension lines.
|
|
523
|
-
*
|
|
524
|
-
* - `0` Arrowheads are not suppressed
|
|
525
|
-
* - `1` Arrowheads are suppressed
|
|
526
|
-
*
|
|
527
|
-
* Parsed by group code `175`
|
|
528
|
-
*
|
|
529
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-79F0441D-60E2-49AE-80F1-093A5BB588E2
|
|
530
|
-
*/
|
|
531
|
-
DIMSOXD: 0 | 1;
|
|
532
|
-
/**
|
|
533
|
-
* Assigns colors to dimension lines, arrowheads, and dimension leader lines.
|
|
534
|
-
*
|
|
535
|
-
* Also controls the color of leader lines created with the `LEADER` command.
|
|
536
|
-
*
|
|
537
|
-
* - `0` BYBLOCK
|
|
538
|
-
* - `256` BYLAYER
|
|
539
|
-
*
|
|
540
|
-
* Parsed by group code `176`
|
|
541
|
-
*
|
|
542
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-D229D47D-CFF5-461B-BB6F-96A6077D8A81
|
|
543
|
-
*/
|
|
544
|
-
DIMCLRD: number;
|
|
545
|
-
/**
|
|
546
|
-
* Assigns colors to extension lines, center marks, and centerlines.
|
|
547
|
-
*
|
|
548
|
-
* - `0` BYBLOCK
|
|
549
|
-
* - `256` BYLAYER
|
|
550
|
-
*
|
|
551
|
-
* Parsed by group code `177`
|
|
552
|
-
*
|
|
553
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-9A0E97A2-79E8-49BD-8BE6-88BD802452B0
|
|
554
|
-
*/
|
|
555
|
-
DIMCLRE: number;
|
|
556
|
-
/**
|
|
557
|
-
* Assigns colors to dimension text.
|
|
558
|
-
*
|
|
559
|
-
* The color can be any valid color number.
|
|
560
|
-
*
|
|
561
|
-
* Parsed by group code `178`
|
|
562
|
-
*
|
|
563
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-58388D9A-F3E9-442D-8739-816BDE1DD07E
|
|
564
|
-
*/
|
|
565
|
-
DIMCLRT: number;
|
|
566
|
-
/**
|
|
567
|
-
* Controls the number of precision places displayed in angular dimensions.
|
|
568
|
-
*
|
|
569
|
-
* - `-1` Angular dimensions display the number of decimal places specified by `DIMDEC`
|
|
570
|
-
* - `0 ~ 8` Specifies the number of decimal places displayed in angular dimensions (independent of `DIMDEC`)
|
|
571
|
-
*
|
|
572
|
-
* Parsed by group code `179`
|
|
573
|
-
*
|
|
574
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-E5C2F9AA-5017-4111-A485-E0456225D691
|
|
575
|
-
*/
|
|
576
|
-
DIMADEC: number;
|
|
577
|
-
/**
|
|
578
|
-
* Obsolete. Use `DIMLUNIT` instead.
|
|
579
|
-
*
|
|
580
|
-
* Parsed by group code `270`
|
|
581
|
-
*
|
|
582
|
-
* @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbDimension__dimunit
|
|
583
|
-
*/
|
|
584
|
-
DIMUNIT?: number;
|
|
585
|
-
/**
|
|
586
|
-
* Sets the number of decimal places displayed for the primary units of a dimension.
|
|
587
|
-
*
|
|
588
|
-
* The precision is based on the units or angle format you have selected. Specified value is
|
|
589
|
-
* applied to angular dimensions when `DIMADEC` is set to `-1`.
|
|
590
|
-
*
|
|
591
|
-
* Parseed by group code `271`
|
|
592
|
-
*
|
|
593
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-8F311450-A848-4682-81A5-D0EC6E3499C9
|
|
594
|
-
*/
|
|
595
|
-
DIMDEC: number;
|
|
596
|
-
/**
|
|
597
|
-
* Sets the number of decimal places to display in tolerance values for the primary units
|
|
598
|
-
* in a dimension.
|
|
599
|
-
*
|
|
600
|
-
* This system variable has no effect unless `DIMTOL` is set to On.
|
|
601
|
-
*
|
|
602
|
-
* The default for `DIMTOL` is Off.
|
|
603
|
-
*
|
|
604
|
-
* Parsed by group code `272`
|
|
605
|
-
*
|
|
606
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-49EAC810-F707-464B-852D-F0B8D5BC3588
|
|
607
|
-
*/
|
|
608
|
-
DIMTDEC: number;
|
|
609
|
-
/**
|
|
610
|
-
* Sets the units format for alternate units of all dimension substyles **except Angular**.
|
|
611
|
-
*
|
|
612
|
-
* Parsed by group code `273`
|
|
613
|
-
*
|
|
614
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-3A2EA9D7-30C7-4C89-A09F-DD2AB74B9D13
|
|
615
|
-
*/
|
|
616
|
-
DIMALTU: DimensionUnit;
|
|
617
|
-
/**
|
|
618
|
-
* Sets the number of decimal places for the tolerance values in the alternate units of a dimension.
|
|
619
|
-
*
|
|
620
|
-
* Parsed by group code `274`
|
|
621
|
-
*
|
|
622
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-4C0568B5-2655-4906-8BAC-3CA273007825
|
|
623
|
-
*/
|
|
624
|
-
DIMALTTD: number;
|
|
625
|
-
/**
|
|
626
|
-
* Sets the units format for angular dimensions.
|
|
627
|
-
*
|
|
628
|
-
* Parsed by group code `275`
|
|
629
|
-
*
|
|
630
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-30F44A49-4250-42D1-AEF2-5E2914ADB02B
|
|
631
|
-
*/
|
|
632
|
-
DIMAUNIT: DimensionAngularUnit;
|
|
633
|
-
/**
|
|
634
|
-
* Sets the fraction format when `DIMLUNIT` is set to `4` (`Architectural`) or `5` (`Fractional`).
|
|
635
|
-
*
|
|
636
|
-
* Parsed by group code `276`
|
|
637
|
-
*
|
|
638
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-6A35A398-ED55-4EC3-88F2-23F6FBADF1BE
|
|
639
|
-
*/
|
|
640
|
-
DIMFRAC: DimensionFractionFormat;
|
|
641
|
-
/**
|
|
642
|
-
* Sets units for all dimension types **except Angular**.
|
|
643
|
-
*
|
|
644
|
-
* Parsed by group code `277`
|
|
645
|
-
*
|
|
646
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-2ECDF7CF-6EEA-4174-B50C-8630D5002C20
|
|
647
|
-
*/
|
|
648
|
-
DIMLUNIT: number;
|
|
649
|
-
/**
|
|
650
|
-
* Specifies a single-character decimal separator to use when creating dimensions whose unit format is decimal.
|
|
651
|
-
*
|
|
652
|
-
* It's represented in ASCII code
|
|
653
|
-
*
|
|
654
|
-
* Parsed by group code `278`
|
|
655
|
-
*
|
|
656
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-0CDD6AA6-CDD8-4C9D-A270-A3DA00DCE63E
|
|
657
|
-
*/
|
|
658
|
-
DIMDSEP: number;
|
|
659
|
-
/**
|
|
660
|
-
* Sets dimension text movement rules.
|
|
661
|
-
*
|
|
662
|
-
* Parsed by group code `279`
|
|
663
|
-
*
|
|
664
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-10475059-6A2E-40B2-AF30-E92F104E9C03
|
|
665
|
-
*/
|
|
666
|
-
DIMTMOVE: number;
|
|
667
|
-
/**
|
|
668
|
-
* Controls the horizontal positioning of dimension text.
|
|
669
|
-
*
|
|
670
|
-
* Parsed by group code `280`
|
|
671
|
-
*
|
|
672
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-C67348A9-2260-4135-A7FF-FE0B45211CB0
|
|
673
|
-
*/
|
|
674
|
-
DIMJUST: DimensionTextHorizontal;
|
|
675
|
-
/**
|
|
676
|
-
* Controls suppression of the first dimension line and arrowhead.
|
|
677
|
-
*
|
|
678
|
-
* When turned on, suppresses the display of the dimension line and arrowhead between the first
|
|
679
|
-
* extension line and the text.
|
|
680
|
-
*
|
|
681
|
-
* - `0` First dimension line is not suppressed
|
|
682
|
-
* - `1` First dimension line is suppressed
|
|
683
|
-
*
|
|
684
|
-
* Parsed by group code `281`
|
|
685
|
-
*
|
|
686
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-B476440D-0BCB-4691-81BA-1B0DC945BE99
|
|
687
|
-
*/
|
|
688
|
-
DIMSD1: 0 | 1;
|
|
689
|
-
/**
|
|
690
|
-
* Controls suppression of the second dimension line and arrowhead.
|
|
691
|
-
*
|
|
692
|
-
* When turned on, suppresses the display of the dimension line and arrowhead between the second
|
|
693
|
-
* extension line and the text.
|
|
694
|
-
*
|
|
695
|
-
* - `0` Second dimension line is not suppressed
|
|
696
|
-
* - `1` Second dimension line is suppressed
|
|
697
|
-
*
|
|
698
|
-
* Parsed by group code `282`
|
|
699
|
-
*
|
|
700
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-B55002A4-AF9F-41D0-A8B4-EDB8BB078662
|
|
701
|
-
*/
|
|
702
|
-
DIMSD2: 0 | 1;
|
|
703
|
-
/**
|
|
704
|
-
* Sets the vertical justification for tolerance values relative to the nominal dimension text.
|
|
705
|
-
*
|
|
706
|
-
* This system variable has no effect unless `DIMTOL` is set to On.
|
|
707
|
-
*
|
|
708
|
-
* Parsed by group code `283`
|
|
709
|
-
*
|
|
710
|
-
* The default for `DIMTOL` is Off.
|
|
711
|
-
*
|
|
712
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-CF5FAF97-2718-4253-8B4C-9D6D7EB75C59
|
|
713
|
-
*/
|
|
714
|
-
DIMTOLJ: DimensionTextVertical;
|
|
715
|
-
/**
|
|
716
|
-
* Controls the suppression of zeros in tolerance values.
|
|
717
|
-
*
|
|
718
|
-
* Values `0` ~ `3` affect feet-and-inch dimensions only.
|
|
719
|
-
*
|
|
720
|
-
* Parsed by group code `284`
|
|
721
|
-
*
|
|
722
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-944FA6CB-1394-4523-9620-6B1350F0C40E
|
|
723
|
-
*/
|
|
724
|
-
DIMTZIN: DimensionZeroSuppression;
|
|
725
|
-
/**
|
|
726
|
-
* Controls the suppression of zeros for alternate unit dimension values.
|
|
727
|
-
*
|
|
728
|
-
* `DIMALTZ` values `0` ~ `3` affect feet-and-inch dimensions only.
|
|
729
|
-
*
|
|
730
|
-
* Parsedby group code `285`
|
|
731
|
-
*
|
|
732
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-4EAEEC60-4A34-4C5E-BFA4-AEFA8EEB4FB6
|
|
733
|
-
*/
|
|
734
|
-
DIMALTZ: DimensionZeroSuppression;
|
|
735
|
-
/**
|
|
736
|
-
* Controls suppression of zeros in tolerance values.
|
|
737
|
-
*
|
|
738
|
-
* Parsed by group code `286`
|
|
739
|
-
*
|
|
740
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-846F1DD5-C6B0-4088-BD5D-51D5E62345E2
|
|
741
|
-
*/
|
|
742
|
-
DIMALTTZ: DimensionZeroSuppression;
|
|
743
|
-
/**
|
|
744
|
-
* Obsolete. Use `DIMAFIT` and `DIMTMOVE` instead.
|
|
745
|
-
*
|
|
746
|
-
* Parsed by group code `287`
|
|
747
|
-
*
|
|
748
|
-
* @see https://help.autodesk.com/view/OARX/2024/ENU/?guid=OARX-RefGuide-AcDbDimension__dimfit
|
|
749
|
-
*/
|
|
750
|
-
DIMFIT?: number;
|
|
751
|
-
/**
|
|
752
|
-
* Controls options for user-positioned text.
|
|
753
|
-
*
|
|
754
|
-
* - `0` Cursor controls only the dimension line location
|
|
755
|
-
* - `1` Cursor controls both the text position and the dimension line location
|
|
756
|
-
*
|
|
757
|
-
* Parsed by group code `288`
|
|
758
|
-
*
|
|
759
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-4B271261-0596-48DE-BA45-0AB0C7379FA4
|
|
760
|
-
*/
|
|
761
|
-
DIMUPT: number;
|
|
762
|
-
/**
|
|
763
|
-
* Determines how dimension text and arrows are arranged when space is not sufficient to place both within the extension lines.
|
|
764
|
-
*
|
|
765
|
-
* Parsed by group code `289`
|
|
766
|
-
*
|
|
767
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-2F8FA7E7-C79F-40EA-A416-C4B02D09F310
|
|
768
|
-
*/
|
|
769
|
-
DIMATFIT: number;
|
|
770
|
-
/**
|
|
771
|
-
* Controls whether extension lines are set to a fixed length.
|
|
772
|
-
*
|
|
773
|
-
* When DIMFXLON is on (`1`), extension lines are set to the length specified by `DIMFXL`.
|
|
774
|
-
*
|
|
775
|
-
* Parsed by group code `290`
|
|
776
|
-
*
|
|
777
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-D0E2EA4A-4CA2-4286-9439-55A19726C166
|
|
778
|
-
*/
|
|
779
|
-
DIMFXLON: 0 | 1;
|
|
780
|
-
/**
|
|
781
|
-
* Specifies the reading direction of the dimension text.
|
|
782
|
-
*
|
|
783
|
-
* - `0`: Displays dimension text in a Left-to-Right reading style
|
|
784
|
-
* - `1`: Displays dimension text in a Right-to-Left reading style
|
|
785
|
-
*
|
|
786
|
-
* Parsed by group code `294`
|
|
787
|
-
*
|
|
788
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-06B9BE91-A2E9-45CB-9B3D-7D5BDD238F5B
|
|
789
|
-
*/
|
|
790
|
-
DIMTXTDIRECTION: number;
|
|
791
|
-
/**
|
|
792
|
-
* Specifies the text style of the dimension.
|
|
793
|
-
*
|
|
794
|
-
* Parsed by group code `340`
|
|
795
|
-
*
|
|
796
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-2B91DF02-DF27-447D-A395-054814B1F305
|
|
797
|
-
*/
|
|
798
|
-
DIMTXSTY: string;
|
|
799
|
-
/**
|
|
800
|
-
* Sets the arrowhead block displayed at the ends of dimension lines.
|
|
801
|
-
*
|
|
802
|
-
* There are pre-defined block names for AutoCAD. For more information, checkout the link in the below.
|
|
803
|
-
* Be aware that the block names are **case insensitive**.
|
|
804
|
-
*
|
|
805
|
-
* Parsed by group code `342`
|
|
806
|
-
*
|
|
807
|
-
* @note Annotative blocks cannot be used as custom arrowheads for dimensions or leaders.
|
|
808
|
-
*
|
|
809
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-6E09DCCA-313F-4FF4-BB1B-F41B512B9CC9
|
|
810
|
-
*/
|
|
811
|
-
DIMBLK: string;
|
|
812
|
-
/**
|
|
813
|
-
* Sets the arrowhead for the first end of the dimension line when `DIMSAH` is on.
|
|
814
|
-
*
|
|
815
|
-
* For a list of arrowheads, see `DIMBLK`.
|
|
816
|
-
*
|
|
817
|
-
* Parsed by group code `343`
|
|
818
|
-
*
|
|
819
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-9DCC9697-9B2C-4EF7-9728-FE047DE760B3
|
|
820
|
-
*/
|
|
821
|
-
DIMBLK1: string;
|
|
822
|
-
/**
|
|
823
|
-
* Sets the arrowhead for the second end of the dimension line when `DIMSAH` is on.
|
|
824
|
-
*
|
|
825
|
-
* For a list of arrowheads, see `DIMBLK`.
|
|
826
|
-
*
|
|
827
|
-
* Parsed by group code `344`
|
|
828
|
-
*
|
|
829
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-E81E370B-55A6-49C5-A280-5F54EAF8308B
|
|
830
|
-
*/
|
|
831
|
-
DIMBLK2: string;
|
|
832
|
-
/**
|
|
833
|
-
* Specifies the arrow type for leaders.
|
|
834
|
-
*
|
|
835
|
-
* For a list of arrowhead entries, see `DIMBLK`.
|
|
836
|
-
*
|
|
837
|
-
* Parsed by group code `341`
|
|
838
|
-
*
|
|
839
|
-
* @Note Annotative blocks cannot be used as custom arrowheads for dimensions or leaders.
|
|
840
|
-
*
|
|
841
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-B4374832-C2B4-4555-900C-693625AC58DE
|
|
842
|
-
*/
|
|
843
|
-
DIMLDRBLK?: string;
|
|
844
|
-
/**
|
|
845
|
-
* Sets the linetype of the dimension line. The value is `BYLAYER`, `BYBLOCK`, or the name of a linetype.
|
|
846
|
-
*
|
|
847
|
-
* Parsed by group code `345`
|
|
848
|
-
*
|
|
849
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-08054AEC-6DB4-4E69-B992-C6D8FC0021EC
|
|
850
|
-
*/
|
|
851
|
-
DIMLTYPE: string;
|
|
852
|
-
/**
|
|
853
|
-
* Sets the linetype of the first extension line. The value is `BYLAYER`, `BYBLOCK`, or the name of a linetype.
|
|
854
|
-
*
|
|
855
|
-
* Parsed by group code `346`
|
|
856
|
-
*
|
|
857
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-535BAECA-312A-4841-A064-4FDB3469AAD0
|
|
858
|
-
*/
|
|
859
|
-
DIMLTEX1: string;
|
|
860
|
-
/**
|
|
861
|
-
* Sets the linetype of the second extension line. The value is `BYLAYER`, `BYBLOCK`,
|
|
862
|
-
* or the name of a linetype.
|
|
863
|
-
*
|
|
864
|
-
* Parsed by group code `347`
|
|
865
|
-
*
|
|
866
|
-
* @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-E2101E66-6741-40BF-B62D-E8201F51BA7F
|
|
867
|
-
*/
|
|
868
|
-
DIMLTEX2: string;
|
|
869
|
-
/**
|
|
870
|
-
* Assigns lineweight to dimension lines.
|
|
871
|
-
*
|
|
872
|
-
* - `-1` Sets the lineweight to `BYLAYER`
|
|
873
|
-
* - `-2` Sets the lineweight to `BYBLOCK`
|
|
874
|
-
* - `-3` Sets the lineweight to `DEFAULT` which is controlled by the `LWDEFAULT` system variable.
|
|
875
|
-
*
|
|
876
|
-
* Other valid values entered in hundredths of millimeters include `0`, `5`, `9`, `13`, `15`, `18`,
|
|
877
|
-
* `20`, `25`, `30`, `35`, `40`, `50`, `53`, `60`, `70`, `80`, `90`, `100`, `106`, `120`, `140`, `158`,
|
|
878
|
-
* `200`, and `211`.
|
|
879
|
-
*
|
|
880
|
-
* All values must be entered in hundredths of millimeters. Multiply a value by `2540` to convert
|
|
881
|
-
* values from inches to hundredths of millimeters.
|
|
882
|
-
*
|
|
883
|
-
* Parsed by group code `371`
|
|
884
|
-
*
|
|
885
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-8EE72FFB-3EE7-4F10-83EC-45565F1CBCCE
|
|
886
|
-
*/
|
|
887
|
-
DIMLWD: number;
|
|
888
|
-
/**
|
|
889
|
-
* Assigns lineweight to extension lines.
|
|
890
|
-
*
|
|
891
|
-
* - `-1` Sets the lineweight to `BYLAYER`
|
|
892
|
-
* - `-2` Sets the lineweight to `BYBLOCK`
|
|
893
|
-
* - `-3` Sets the lineweight to `DEFAULT` which is controlled by the `LWDEFAULT` system variable.
|
|
894
|
-
*
|
|
895
|
-
* Other valid values entered in hundredths of millimeters include `0`, `5`, `9`, `13`, `15`, `18`,
|
|
896
|
-
* `20`, `25`, `30`, `35`, `40`, `50`, `53`, `60`, `70`, `80`, `90`, `100`, `106`, `120`, `140`, `158`,
|
|
897
|
-
* `200`, and `211`.
|
|
898
|
-
*
|
|
899
|
-
* All values must be entered in hundredths of millimeters. Multiply a value by `2540` to convert
|
|
900
|
-
* values from inches to hundredths of millimeters.
|
|
901
|
-
*
|
|
902
|
-
* Parsed by group code `372`
|
|
903
|
-
*
|
|
904
|
-
* @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-21DF5F82-4F3A-4F93-8FD6-89A942799468
|
|
905
|
-
*/
|
|
906
|
-
DIMLWE: number;
|
|
907
|
-
};
|
|
908
|
-
export type DimStylesTableEntry = DimStyleVariables & CommonDxfTableEntry & {
|
|
909
|
-
styleName: string;
|
|
910
|
-
subclassMarker: 'AcDbDimStyleTableRecord';
|
|
911
|
-
};
|
|
912
|
-
//# sourceMappingURL=types.d.ts.map
|