build-dxf 0.0.48 → 0.0.50
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 +50 -1
- package/package.json +1 -1
- package/src/build.js +1652 -1223
- package/src/index.css +1 -1
- package/src/index3.js +975 -927
- package/src/utils/CommandManager/CommandFlow.d.ts +2 -0
- package/src/utils/DxfSystem/components/DoorsAnalysis.d.ts +1 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +1 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +7 -0
- package/src/utils/DxfSystem/type.d.ts +9 -1
- package/src/utils/DxfSystem/utils/DoubleWallHelper.d.ts +0 -1
- package/src/utils/DxfSystem/utils/LineGroupType.d.ts +81 -0
- package/src/utils/DxfSystem/utils/findClosedPolygons01.d.ts +4 -17
- package/src/utils/DxfSystem/utils/findDiscretePointLine.d.ts +1 -1
- package/src/utils/DxfSystem/utils/findLargestCircle.d.ts +14 -0
- package/src/utils/DxfSystem/utils/index.d.ts +11 -0
- package/src/utils/DxfSystem/utils/mergeSmallestCircle.d.ts +14 -0
- package/src/utils/DxfSystem/utils/recomputedWindow.d.ts +5 -0
- package/src/utils/DxfSystem/utils/smallestCircle.d.ts +6 -0
- package/src/utils/LineIndexGenerator.d.ts +3 -1
- package/src/utils/LineSegment.d.ts +16 -1
- package/src/utils/Map.d.ts +3 -0
- package/src/utils/Point.d.ts +1 -0
- package/src/utils/PointVirtualGrid/index.d.ts +5 -4
- package/src/utils/Polygon.d.ts +26 -0
- package/src/utils/UndirectedGraph.d.ts +39 -9
- package/src/utils/index.d.ts +17 -0
- package/src/utils/DxfSystem/utils/BoundExtOld.d.ts +0 -16
- package/src/utils/DxfSystem/utils/TrajectoryHelper.d.ts +0 -29
- package/src/utils/DxfSystem/utils/findClosedPolygons.d.ts +0 -22
- package/src/utils/Path.d.ts +0 -6
package/README.md
CHANGED
|
@@ -105,4 +105,53 @@ import "build-dxf/index.css"
|
|
|
105
105
|
import data from "../data/d4.json"
|
|
106
106
|
import dp8 from "../data/dp8.json"
|
|
107
107
|
</script>
|
|
108
|
-
```
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
# 内置类
|
|
111
|
+
### 1. 核心类
|
|
112
|
+
1. DxfSystem
|
|
113
|
+
|
|
114
|
+
### 核心组件类
|
|
115
|
+
1. Dxf
|
|
116
|
+
2. AngleCorrectionDxf
|
|
117
|
+
3. DoorsAnalysis
|
|
118
|
+
4. ThreeVJia
|
|
119
|
+
5. Variable
|
|
120
|
+
|
|
121
|
+
### 2. 渲染插件组件类
|
|
122
|
+
1. Renderer
|
|
123
|
+
2. DomContainer
|
|
124
|
+
3. DomEventRegister
|
|
125
|
+
4. EventInput
|
|
126
|
+
5. DetailsPointRender
|
|
127
|
+
6. ModelDataRender
|
|
128
|
+
7. OriginalLineRender
|
|
129
|
+
|
|
130
|
+
### 3. 模型数据提供插件组件类
|
|
131
|
+
1. DetailsPoint
|
|
132
|
+
2. DxfLineModel
|
|
133
|
+
3. WhiteModel
|
|
134
|
+
|
|
135
|
+
### 4. 编辑器插件组件类
|
|
136
|
+
|
|
137
|
+
##### 编辑器管理组件类
|
|
138
|
+
1. RenderManager
|
|
139
|
+
2. Editor
|
|
140
|
+
|
|
141
|
+
##### 命令流组件类
|
|
142
|
+
1. CommandFlowComponent
|
|
143
|
+
2. Default
|
|
144
|
+
3. ClippingLine
|
|
145
|
+
4. ConnectionLine
|
|
146
|
+
5. DeleteSelectLine
|
|
147
|
+
6. DeleteSelectWindow
|
|
148
|
+
7. DrawDoorLine
|
|
149
|
+
8. DrawLine
|
|
150
|
+
9. DrawWindow
|
|
151
|
+
10. IntersectionConnectionLine
|
|
152
|
+
11. MergeLine
|
|
153
|
+
12. PointDrag
|
|
154
|
+
13. SelectAll
|
|
155
|
+
14. VerticalCorrection
|
|
156
|
+
15. VerticalReferenceLine
|
|
157
|
+
16. ViewAngle
|