gs-bim-air 0.0.3-0.32 → 0.0.3-0.33
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/READMEBETA.md +13 -0
- package/docs/classes/Viewer.md +2 -2
- package/docs/interfaces/Options.md +13 -0
- package/lib/BimAir.common-report.html +2 -2
- package/lib/BimAir.common.js +19 -29
- package/lib/BimAir.umd-report.html +2 -2
- package/lib/BimAir.umd.js +19 -29
- package/lib/BimAir.umd.min-report.html +2 -2
- package/lib/BimAir.umd.min.js +19 -29
- package/lib/undefined.gzundefined +0 -0
- package/package.json +1 -1
package/READMEBETA.md
CHANGED
|
@@ -356,3 +356,16 @@ let options = {
|
|
|
356
356
|
},
|
|
357
357
|
};
|
|
358
358
|
```
|
|
359
|
+
|
|
360
|
+
### 0.0.30.33
|
|
361
|
+
|
|
362
|
+
- 修复 noSharedArrayBuffer 情况下碰撞不起作用的问题,但效率有点慢
|
|
363
|
+
- 修复非标加载下,碰撞面板结构树和专业爆炸结构树多了根节点,
|
|
364
|
+
- 修复测量体积报错的问题
|
|
365
|
+
- 修复工具条碰撞问题
|
|
366
|
+
- 修复碰撞面板的结构树与模型结构树显示不一致问题
|
|
367
|
+
- 添加通过 RenderObject 的 Id 加载模型的接口
|
|
368
|
+
|
|
369
|
+
```js
|
|
370
|
+
viewer.loadRenderObjects(["6ddabd40-4492-42f0-a16e-b9c0f9bb98b9"]);
|
|
371
|
+
```
|
package/docs/classes/Viewer.md
CHANGED
|
@@ -2047,7 +2047,7 @@ ___
|
|
|
2047
2047
|
|
|
2048
2048
|
### computeCollision
|
|
2049
2049
|
|
|
2050
|
-
▸ **computeCollision**(`one`, `two`, `type`, `softDiatance?`, `computeInvisible?`): `Promise`<[]\>
|
|
2050
|
+
▸ **computeCollision**(`one`, `two`, `type`, `softDiatance?`, `computeInvisible?`): `Promise`<{ `keyOne`: `number` ; `keyTwo`: `number` ; `pathOne`: `string` ; `pathTwo`: `string` ; `position`: `number`[] ; `type`: `CollisionType` }[]\>
|
|
2051
2051
|
|
|
2052
2052
|
#### Parameters
|
|
2053
2053
|
|
|
@@ -2061,7 +2061,7 @@ ___
|
|
|
2061
2061
|
|
|
2062
2062
|
#### Returns
|
|
2063
2063
|
|
|
2064
|
-
`Promise`<[]\>
|
|
2064
|
+
`Promise`<{ `keyOne`: `number` ; `keyTwo`: `number` ; `pathOne`: `string` ; `pathTwo`: `string` ; `position`: `number`[] ; `type`: `CollisionType` }[]\>
|
|
2065
2065
|
|
|
2066
2066
|
#### Inherited from
|
|
2067
2067
|
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
- [background](Options.md#background)
|
|
10
10
|
- [components](Options.md#components)
|
|
11
11
|
- [elementId](Options.md#elementid)
|
|
12
|
+
- [events](Options.md#events)
|
|
12
13
|
- [fileService](Options.md#fileservice)
|
|
13
14
|
- [isShowLoading](Options.md#isshowloading)
|
|
14
15
|
- [loaderUrl](Options.md#loaderurl)
|
|
@@ -70,6 +71,18 @@ ___
|
|
|
70
71
|
|
|
71
72
|
___
|
|
72
73
|
|
|
74
|
+
### events
|
|
75
|
+
|
|
76
|
+
• `Optional` **events**: `Object`
|
|
77
|
+
|
|
78
|
+
#### Type declaration
|
|
79
|
+
|
|
80
|
+
| Name | Type |
|
|
81
|
+
| :------ | :------ |
|
|
82
|
+
| `lButtonState` | `LButtonState` |
|
|
83
|
+
|
|
84
|
+
___
|
|
85
|
+
|
|
73
86
|
### fileService
|
|
74
87
|
|
|
75
88
|
• `Optional` **fileService**: `string`
|