gs-bim-air 1.6.1-beta.67 → 1.6.1-beta.68

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,14 @@
1
1
  ## BIMAir 更新日志
2
2
 
3
+ ### 1.6.1-beta.68
4
+
5
+ > 更新 public/js 里的内核文件,安装此版本需替换 js 文件夹
6
+
7
+ - feat: 优化 cae 模型轴剖切效率
8
+ - feat: 粒子系统修复完毕
9
+ - fix: 修复了再次进入第三人称漫游命令重新创建 shader 的问题
10
+ - fix: 修复添加视点影响 ro 渲染树导致加载 worker.gsz 出错的问题
11
+
3
12
  ### 1.6.1-beta.67
4
13
 
5
14
  - feat: 优化计算 cae 分析模型剖切面图片接口效率
@@ -7,6 +7,9 @@
7
7
  ### Functions
8
8
 
9
9
  - [cutModelByPlane](CAE.md#cutmodelbyplane)
10
+ - [cutModelByXAxis](CAE.md#cutmodelbyxaxis)
11
+ - [cutModelByYAxis](CAE.md#cutmodelbyyaxis)
12
+ - [cutModelByZAxis](CAE.md#cutmodelbyzaxis)
10
13
  - [cutModelImageByPlane](CAE.md#cutmodelimagebyplane)
11
14
  - [insertPlaneCuttingResult](CAE.md#insertplanecuttingresult)
12
15
  - [insertPlaneCuttingResultToSegment](CAE.md#insertplanecuttingresulttosegment)
@@ -37,6 +40,66 @@
37
40
 
38
41
  ___
39
42
 
43
+ ### cutModelByXAxis
44
+
45
+ ▸ **cutModelByXAxis**(`segObj`, `coord`, `sign`): `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
46
+
47
+ #### Parameters
48
+
49
+ | Name | Type | Description |
50
+ | :------ | :------ | :------ |
51
+ | `segObj` | [`SegmentObject`](../classes/SegmentObject.md) | 剖面切分cae分析模型 |
52
+ | `coord` | `number` | 坐标值 |
53
+ | `sign` | `boolean` | 方向 |
54
+
55
+ #### Returns
56
+
57
+ `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
58
+
59
+ 剖切结果
60
+
61
+ ___
62
+
63
+ ### cutModelByYAxis
64
+
65
+ ▸ **cutModelByYAxis**(`segObj`, `coord`, `sign`): `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
66
+
67
+ #### Parameters
68
+
69
+ | Name | Type | Description |
70
+ | :------ | :------ | :------ |
71
+ | `segObj` | [`SegmentObject`](../classes/SegmentObject.md) | 剖面切分cae分析模型 |
72
+ | `coord` | `number` | 坐标值 |
73
+ | `sign` | `boolean` | 方向 |
74
+
75
+ #### Returns
76
+
77
+ `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
78
+
79
+ 剖切结果
80
+
81
+ ___
82
+
83
+ ### cutModelByZAxis
84
+
85
+ ▸ **cutModelByZAxis**(`segObj`, `coord`, `sign`): `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
86
+
87
+ #### Parameters
88
+
89
+ | Name | Type | Description |
90
+ | :------ | :------ | :------ |
91
+ | `segObj` | [`SegmentObject`](../classes/SegmentObject.md) | 剖面切分cae分析模型 |
92
+ | `coord` | `number` | 坐标值 |
93
+ | `sign` | `boolean` | 方向 |
94
+
95
+ #### Returns
96
+
97
+ `Promise`<[`List`](../classes/Longan.List.md)<`CaeElementPlaneCuttingResult`\>\>
98
+
99
+ 剖切结果
100
+
101
+ ___
102
+
40
103
  ### cutModelImageByPlane
41
104
 
42
105
  ▸ **cutModelImageByPlane**(`segObj`, `planeRoot`, `planeNormal`): `Promise`<`string`\>