完整DXF线性标注组吗
时间: 2023-07-14 14:13:56 浏览: 71
以下是一个完整的DXF线性标注组,包含线性标注的各个属性:
```
{
"type": "LINEAR_DIMENSION",
"start_point": [0, 0],
"end_point": [5, 0],
"location": [2.5, 0.5],
"text": "5.0",
"text_direction": [1, 0],
"text_height": 0.2,
"text_rotation": 0,
"ext_line_1_start": [0, 0.5],
"ext_line_1_end": [-0.5, 0.5],
"ext_line_2_start": [5, 0.5],
"ext_line_2_end": [5.5, 0.5],
"dim_line_start": [2.5, 0],
"dim_line_end": [2.5, 0.5],
"dim_line_type": "SOLID",
"dim_line_weight": 0.25,
"ext_line_1_type": "SOLID",
"ext_line_1_weight": 0.25,
"ext_line_2_type": "SOLID",
"ext_line_2_weight": 0.25
}
```
其中,各个属性的含义如下:
- `type`: 标注类型,此处为线性标注。
- `start_point`: 标注线的起点坐标。
- `end_point`: 标注线的终点坐标。
- `location`: 标注文字的位置坐标。
- `text`: 标注文字内容。
- `text_direction`: 标注文字方向。
- `text_height`: 标注文字高度。
- `text_rotation`: 标注文字旋转角度。
- `ext_line_1_start`: 标注线外侧的第一条线的起点坐标。
- `ext_line_1_end`: 标注线外侧的第一条线的终点坐标。
- `ext_line_2_start`: 标注线外侧的第二条线的起点坐标。
- `ext_line_2_end`: 标注线外侧的第二条线的终点坐标。
- `dim_line_start`: 标注线上的第一条线的起点坐标。
- `dim_line_end`: 标注线上的第一条线的终点坐标。
- `dim_line_type`: 标注线的类型。
- `dim_line_weight`: 标注线的线宽。
- `ext_line_1_type`: 标注线外侧的第一条线的类型。
- `ext_line_1_weight`: 标注线外侧的第一条线的线宽。
- `ext_line_2_type`: 标注线外侧的第二条线的类型。
- `ext_line_2_weight`: 标注线外侧的第二条线的线宽。
阅读全文