gs-bim-air 1.6.1-beta.76 → 1.6.1-beta.77

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  ## BIMAir 更新日志
2
2
 
3
+ ### 1.6.1-beta.77
4
+
5
+ - feat: 修改 cae 剖切算法,增加颜色插值
6
+
3
7
  ### 1.6.1-beta.76
4
8
 
5
9
  - fix: 修改打包配置后无法识别 ViewerWrapper
@@ -7,15 +7,9 @@
7
7
  ### Functions
8
8
 
9
9
  - [cutElementByPlane](CAE.md#cutelementbyplane)
10
- - [cutElementByXAxis](CAE.md#cutelementbyxaxis)
11
- - [cutElementByYAxis](CAE.md#cutelementbyyaxis)
12
- - [cutElementByZAxis](CAE.md#cutelementbyzaxis)
13
10
  - [cutElementsByPlane](CAE.md#cutelementsbyplane)
14
11
  - [cutElementsImageByPlane](CAE.md#cutelementsimagebyplane)
15
12
  - [cutModelByPlane](CAE.md#cutmodelbyplane)
16
- - [cutModelByXAxis](CAE.md#cutmodelbyxaxis)
17
- - [cutModelByYAxis](CAE.md#cutmodelbyyaxis)
18
- - [cutModelByZAxis](CAE.md#cutmodelbyzaxis)
19
13
  - [cutModelImageByPlane](CAE.md#cutmodelimagebyplane)
20
14
  - [getElements](CAE.md#getelements)
21
15
  - [insertPlaneCuttingResult](CAE.md#insertplanecuttingresult)
@@ -48,66 +42,6 @@
48
42
 
49
43
  ___
50
44
 
51
- ### cutElementByXAxis
52
-
53
- ▸ **cutElementByXAxis**(`element`, `coord`, `sign`): { `data`: `undefined` ; `res`: `boolean` = false } \| { `data`: `CaeElementPlaneCuttingResult` ; `res`: `boolean` = true }
54
-
55
- x方向剖面切分element
56
-
57
- #### Parameters
58
-
59
- | Name | Type | Description |
60
- | :------ | :------ | :------ |
61
- | `element` | `CaeElement` | |
62
- | `coord` | `number` | 坐标值 |
63
- | `sign` | `boolean` | 方向 |
64
-
65
- #### Returns
66
-
67
- { `data`: `undefined` ; `res`: `boolean` = false } \| { `data`: `CaeElementPlaneCuttingResult` ; `res`: `boolean` = true }
68
-
69
- ___
70
-
71
- ### cutElementByYAxis
72
-
73
- ▸ **cutElementByYAxis**(`element`, `coord`, `sign`): { `data`: `undefined` ; `res`: `boolean` = false } \| { `data`: `CaeElementPlaneCuttingResult` ; `res`: `boolean` = true }
74
-
75
- y方向剖面切分element
76
-
77
- #### Parameters
78
-
79
- | Name | Type | Description |
80
- | :------ | :------ | :------ |
81
- | `element` | `CaeElement` | |
82
- | `coord` | `number` | 坐标值 |
83
- | `sign` | `boolean` | 方向 |
84
-
85
- #### Returns
86
-
87
- { `data`: `undefined` ; `res`: `boolean` = false } \| { `data`: `CaeElementPlaneCuttingResult` ; `res`: `boolean` = true }
88
-
89
- ___
90
-
91
- ### cutElementByZAxis
92
-
93
- ▸ **cutElementByZAxis**(`element`, `coord`, `sign`): { `data`: `undefined` ; `res`: `boolean` = false } \| { `data`: `CaeElementPlaneCuttingResult` ; `res`: `boolean` = true }
94
-
95
- z方向剖面切分element
96
-
97
- #### Parameters
98
-
99
- | Name | Type | Description |
100
- | :------ | :------ | :------ |
101
- | `element` | `CaeElement` | |
102
- | `coord` | `number` | 坐标值 |
103
- | `sign` | `boolean` | 方向 |
104
-
105
- #### Returns
106
-
107
- { `data`: `undefined` ; `res`: `boolean` = false } \| { `data`: `CaeElementPlaneCuttingResult` ; `res`: `boolean` = true }
108
-
109
- ___
110
-
111
45
  ### cutElementsByPlane
112
46
 
113
47
  ▸ **cutElementsByPlane**(`elements`, `planeRoot`, `planeNormal`): [`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>
@@ -164,66 +98,6 @@ ___
164
98
 
165
99
  ___
166
100
 
167
- ### cutModelByXAxis
168
-
169
- ▸ **cutModelByXAxis**(`segObj`, `coord`, `sign`): `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
170
-
171
- #### Parameters
172
-
173
- | Name | Type | Description |
174
- | :------ | :------ | :------ |
175
- | `segObj` | [`SegmentObject`](../classes/SegmentObject.md) | 剖面切分cae分析模型 |
176
- | `coord` | `number` | 坐标值 |
177
- | `sign` | `boolean` | 方向 |
178
-
179
- #### Returns
180
-
181
- `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
182
-
183
- 剖切结果
184
-
185
- ___
186
-
187
- ### cutModelByYAxis
188
-
189
- ▸ **cutModelByYAxis**(`segObj`, `coord`, `sign`): `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
190
-
191
- #### Parameters
192
-
193
- | Name | Type | Description |
194
- | :------ | :------ | :------ |
195
- | `segObj` | [`SegmentObject`](../classes/SegmentObject.md) | 剖面切分cae分析模型 |
196
- | `coord` | `number` | 坐标值 |
197
- | `sign` | `boolean` | 方向 |
198
-
199
- #### Returns
200
-
201
- `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
202
-
203
- 剖切结果
204
-
205
- ___
206
-
207
- ### cutModelByZAxis
208
-
209
- ▸ **cutModelByZAxis**(`segObj`, `coord`, `sign`): `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
210
-
211
- #### Parameters
212
-
213
- | Name | Type | Description |
214
- | :------ | :------ | :------ |
215
- | `segObj` | [`SegmentObject`](../classes/SegmentObject.md) | 剖面切分cae分析模型 |
216
- | `coord` | `number` | 坐标值 |
217
- | `sign` | `boolean` | 方向 |
218
-
219
- #### Returns
220
-
221
- `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
222
-
223
- 剖切结果
224
-
225
- ___
226
-
227
101
  ### cutModelImageByPlane
228
102
 
229
103
  ▸ **cutModelImageByPlane**(`segObj`, `planeRoot`, `planeNormal`): `Promise`<`string`\>