gs-bim-air 1.6.1-beta.18 → 1.6.1-beta.19
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 +12 -1
- package/docs/classes/SDK.Model.md +4 -4
- package/lib/BimAir.common-report.html +2 -2
- package/lib/BimAir.common.js +10 -10
- package/lib/BimAir.umd-report.html +2 -2
- package/lib/BimAir.umd.js +10 -10
- package/lib/BimAir.umd.min-report.html +2 -2
- package/lib/BimAir.umd.min.js +10 -10
- package/lib/undefined.gzundefined +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
## 更新日志
|
|
2
2
|
|
|
3
|
+
### 1.6.1-beta.19
|
|
4
|
+
|
|
5
|
+
> Longan 更新为 v1.6.1-beta.15
|
|
6
|
+
|
|
7
|
+
- fix: 修复 JS_Stream_To_Geometry_Data_By_Keys_Tt 参数的 keys 和 data 为 null 时,多线程函数没有回调导致计数器错误,进而导致模型加载不正确的问题.
|
|
8
|
+
- fix: 修复 draw finish 触发时机不正确的问题
|
|
9
|
+
- fix: 修复截取超出总长度报错,改为直接截取剩下的管道
|
|
10
|
+
- fix: 修改截取结果的属性格式
|
|
11
|
+
- fix: 修复保存到视点的测量和标签在恢复视点后无法对其进行点击选中 svg 操作的问题
|
|
12
|
+
- fix: 删除全部批注时删除对象
|
|
13
|
+
|
|
3
14
|
### 1.6.1-beta.18
|
|
4
15
|
|
|
5
|
-
- fix:
|
|
16
|
+
- fix: 修复模型截取最后一个点没处理导致截取报错问题
|
|
6
17
|
|
|
7
18
|
### 1.6.1-beta.17
|
|
8
19
|
|
|
@@ -132,7 +132,7 @@ ___
|
|
|
132
132
|
|
|
133
133
|
### slice
|
|
134
134
|
|
|
135
|
-
▸ `Static` **slice**(`viewer`, `sliceParams`, `modelName?`, `isInsert?`): `Promise
|
|
135
|
+
▸ `Static` **slice**(`viewer`, `sliceParams`, `modelName?`, `isInsert?`): `Promise`<``false`` \| `File`\>
|
|
136
136
|
|
|
137
137
|
#### Parameters
|
|
138
138
|
|
|
@@ -145,13 +145,13 @@ ___
|
|
|
145
145
|
|
|
146
146
|
#### Returns
|
|
147
147
|
|
|
148
|
-
`Promise
|
|
148
|
+
`Promise`<``false`` \| `File`\>
|
|
149
149
|
|
|
150
150
|
___
|
|
151
151
|
|
|
152
152
|
### sliceOneSegmentObject
|
|
153
153
|
|
|
154
|
-
▸ `Static` **sliceOneSegmentObject**(`viewer`, `lightModel`, `sliceParam`): `Promise
|
|
154
|
+
▸ `Static` **sliceOneSegmentObject**(`viewer`, `lightModel`, `sliceParam`): `Promise`<``false`` \| { `indexes`: `Int32Array` ; `positions`: `Float64Array` }[]\>
|
|
155
155
|
|
|
156
156
|
#### Parameters
|
|
157
157
|
|
|
@@ -163,4 +163,4 @@ ___
|
|
|
163
163
|
|
|
164
164
|
#### Returns
|
|
165
165
|
|
|
166
|
-
`Promise
|
|
166
|
+
`Promise`<``false`` \| { `indexes`: `Int32Array` ; `positions`: `Float64Array` }[]\>
|