{
  "version": 3,
  "sources": ["../../src/types/dimension-entity.ts"],
  "sourcesContent": ["// DIMENSION entity type\n\nimport type { BaseEntity } from './base-entity'\nimport type { Point3D } from './common'\n\nexport interface DimensionEntity extends BaseEntity {\n  type: 'DIMENSION'\n  block?: string\n  start: Point3D\n  /**\n   * Angular vertex for DIMENSION type 5 (Angular 3-point).\n   * This is parsed from group codes 15/25/35.\n   */\n  angleVertex?: Point3D\n\n  /**\n   * Angular arc location point for DIMENSION angular types.\n   * This is parsed from group codes 16/26/36 (OCS in the DXF reference).\n   */\n  arcPoint?: Point3D\n  measureStart: Point3D\n  measureEnd: Point3D\n  textMidpoint: Point3D\n  rotation?: number\n  horizonRotation?: number\n  extensionRotation?: number\n  textRotation?: number\n  attachementPoint: number\n  dimensionType: number\n  extrudeDirection?: Point3D\n  text?: string\n  styleName?: string\n  [key: string]: unknown\n}\n"],
  "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
  "names": []
}
