gs-bim-air 0.1.3-0.15 → 0.1.3-0.16
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/READMEBETA2.md +5 -0
- package/docs/classes/ComponentSelector.md +7 -0
- package/docs/classes/HighlightManager.md +26 -0
- package/docs/classes/InvisibleManager.md +26 -0
- package/docs/classes/IsolationManager.md +26 -0
- package/docs/classes/Viewer.md +22 -2
- package/lib/BimAir.common-report.html +2 -2
- package/lib/BimAir.common.js +27 -27
- package/lib/BimAir.umd-report.html +2 -2
- package/lib/BimAir.umd.js +27 -27
- package/lib/BimAir.umd.min-report.html +2 -2
- package/lib/BimAir.umd.min.js +27 -27
- package/lib/undefined.gzundefined +0 -0
- package/package.json +1 -1
- package/public/js/longan/longan.js +531 -578
- package/public/js/longan/longan.wasm +0 -0
- package/public/js/longanWithoutShareArrayBuffer/longan.js +1 -1
- package/public/js/longanWithoutShareArrayBuffer/longan.wasm +0 -0
package/READMEBETA2.md
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
### Properties
|
|
18
18
|
|
|
19
19
|
- [downPos](ComponentSelector.md#downpos)
|
|
20
|
+
- [isSelectNotComponent](ComponentSelector.md#isselectnotcomponent)
|
|
20
21
|
- [keyDown](ComponentSelector.md#keydown)
|
|
21
22
|
- [keyPress](ComponentSelector.md#keypress)
|
|
22
23
|
- [keyUp](ComponentSelector.md#keyup)
|
|
@@ -107,6 +108,12 @@ Longan.ObjectSelector.downPos
|
|
|
107
108
|
|
|
108
109
|
___
|
|
109
110
|
|
|
111
|
+
### isSelectNotComponent
|
|
112
|
+
|
|
113
|
+
• **isSelectNotComponent**: `boolean` = `true`
|
|
114
|
+
|
|
115
|
+
___
|
|
116
|
+
|
|
110
117
|
### keyDown
|
|
111
118
|
|
|
112
119
|
• **keyDown**: `List`<(`sender`: `ViewerOperator`, `event`: `ViewerEvent`) => `void`\>
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
|
|
24
24
|
- [highlightDatas](HighlightManager.md#highlightdatas)
|
|
25
25
|
- [material](HighlightManager.md#material)
|
|
26
|
+
- [segmentObject](HighlightManager.md#segmentobject)
|
|
27
|
+
- [segmentObjects](HighlightManager.md#segmentobjects)
|
|
26
28
|
- [viewer](HighlightManager.md#viewer)
|
|
27
29
|
|
|
28
30
|
### Methods
|
|
@@ -97,6 +99,30 @@ ___
|
|
|
97
99
|
|
|
98
100
|
___
|
|
99
101
|
|
|
102
|
+
### segmentObject
|
|
103
|
+
|
|
104
|
+
• `get` **segmentObject**(): [`SegmentObject`](SegmentObject.md)
|
|
105
|
+
|
|
106
|
+
获取当前高亮的一个节点
|
|
107
|
+
|
|
108
|
+
#### Returns
|
|
109
|
+
|
|
110
|
+
[`SegmentObject`](SegmentObject.md)
|
|
111
|
+
|
|
112
|
+
___
|
|
113
|
+
|
|
114
|
+
### segmentObjects
|
|
115
|
+
|
|
116
|
+
• `get` **segmentObjects**(): [`SegmentObject`](SegmentObject.md)[]
|
|
117
|
+
|
|
118
|
+
获取当前高亮的全部节点
|
|
119
|
+
|
|
120
|
+
#### Returns
|
|
121
|
+
|
|
122
|
+
[`SegmentObject`](SegmentObject.md)[]
|
|
123
|
+
|
|
124
|
+
___
|
|
125
|
+
|
|
100
126
|
### viewer
|
|
101
127
|
|
|
102
128
|
• `get` **viewer**(): [`Viewer`](Viewer.md)
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
- [invisibleDatas](InvisibleManager.md#invisibledatas)
|
|
25
25
|
- [invisibleStyleSegment](InvisibleManager.md#invisiblestylesegment)
|
|
26
26
|
- [material](InvisibleManager.md#material)
|
|
27
|
+
- [segmentObject](InvisibleManager.md#segmentobject)
|
|
28
|
+
- [segmentObjects](InvisibleManager.md#segmentobjects)
|
|
27
29
|
- [viewer](InvisibleManager.md#viewer)
|
|
28
30
|
|
|
29
31
|
### Methods
|
|
@@ -113,6 +115,30 @@ ___
|
|
|
113
115
|
|
|
114
116
|
___
|
|
115
117
|
|
|
118
|
+
### segmentObject
|
|
119
|
+
|
|
120
|
+
• `get` **segmentObject**(): [`SegmentObject`](SegmentObject.md)
|
|
121
|
+
|
|
122
|
+
获取当前隐藏的一个节点
|
|
123
|
+
|
|
124
|
+
#### Returns
|
|
125
|
+
|
|
126
|
+
[`SegmentObject`](SegmentObject.md)
|
|
127
|
+
|
|
128
|
+
___
|
|
129
|
+
|
|
130
|
+
### segmentObjects
|
|
131
|
+
|
|
132
|
+
• `get` **segmentObjects**(): [`SegmentObject`](SegmentObject.md)[]
|
|
133
|
+
|
|
134
|
+
获取当前隐藏的全部节点
|
|
135
|
+
|
|
136
|
+
#### Returns
|
|
137
|
+
|
|
138
|
+
[`SegmentObject`](SegmentObject.md)[]
|
|
139
|
+
|
|
140
|
+
___
|
|
141
|
+
|
|
116
142
|
### viewer
|
|
117
143
|
|
|
118
144
|
• `get` **viewer**(): [`Viewer`](Viewer.md)
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
- [isolationDatas](IsolationManager.md#isolationdatas)
|
|
25
25
|
- [isolationStyleSegment](IsolationManager.md#isolationstylesegment)
|
|
26
26
|
- [material](IsolationManager.md#material)
|
|
27
|
+
- [segmentObject](IsolationManager.md#segmentobject)
|
|
28
|
+
- [segmentObjects](IsolationManager.md#segmentobjects)
|
|
27
29
|
- [viewer](IsolationManager.md#viewer)
|
|
28
30
|
|
|
29
31
|
### Methods
|
|
@@ -113,6 +115,30 @@ ___
|
|
|
113
115
|
|
|
114
116
|
___
|
|
115
117
|
|
|
118
|
+
### segmentObject
|
|
119
|
+
|
|
120
|
+
• `get` **segmentObject**(): [`SegmentObject`](SegmentObject.md)
|
|
121
|
+
|
|
122
|
+
获取当前隔离的一个节点
|
|
123
|
+
|
|
124
|
+
#### Returns
|
|
125
|
+
|
|
126
|
+
[`SegmentObject`](SegmentObject.md)
|
|
127
|
+
|
|
128
|
+
___
|
|
129
|
+
|
|
130
|
+
### segmentObjects
|
|
131
|
+
|
|
132
|
+
• `get` **segmentObjects**(): [`SegmentObject`](SegmentObject.md)[]
|
|
133
|
+
|
|
134
|
+
获取当前隔离的全部节点
|
|
135
|
+
|
|
136
|
+
#### Returns
|
|
137
|
+
|
|
138
|
+
[`SegmentObject`](SegmentObject.md)[]
|
|
139
|
+
|
|
140
|
+
___
|
|
141
|
+
|
|
116
142
|
### viewer
|
|
117
143
|
|
|
118
144
|
• `get` **viewer**(): [`Viewer`](Viewer.md)
|
package/docs/classes/Viewer.md
CHANGED
|
@@ -144,6 +144,7 @@
|
|
|
144
144
|
- [computeRayTest](Viewer.md#computeraytest)
|
|
145
145
|
- [computeViewBoundingBox](Viewer.md#computeviewboundingbox)
|
|
146
146
|
- [computeViewBoundingBoxByKey](Viewer.md#computeviewboundingboxbykey)
|
|
147
|
+
- [computeViewBoundingBoxes](Viewer.md#computeviewboundingboxes)
|
|
147
148
|
- [convertCoordinate](Viewer.md#convertcoordinate)
|
|
148
149
|
- [convertDCoordinate](Viewer.md#convertdcoordinate)
|
|
149
150
|
- [dispose](Viewer.md#dispose)
|
|
@@ -1867,7 +1868,7 @@ ___
|
|
|
1867
1868
|
|
|
1868
1869
|
### asynBatchSetSegmentsDataFromCache
|
|
1869
1870
|
|
|
1870
|
-
▸ **asynBatchSetSegmentsDataFromCache**(`segKey`, `bytes
|
|
1871
|
+
▸ **asynBatchSetSegmentsDataFromCache**(`segKey`, `bytes`): `void`
|
|
1871
1872
|
|
|
1872
1873
|
#### Parameters
|
|
1873
1874
|
|
|
@@ -1875,7 +1876,6 @@ ___
|
|
|
1875
1876
|
| :------ | :------ |
|
|
1876
1877
|
| `segKey` | `any` |
|
|
1877
1878
|
| `bytes` | `any` |
|
|
1878
|
-
| `isUpdateGeometries` | `boolean` |
|
|
1879
1879
|
|
|
1880
1880
|
#### Returns
|
|
1881
1881
|
|
|
@@ -2110,6 +2110,26 @@ LonganViewer.computeViewBoundingBoxByKey
|
|
|
2110
2110
|
|
|
2111
2111
|
___
|
|
2112
2112
|
|
|
2113
|
+
### computeViewBoundingBoxes
|
|
2114
|
+
|
|
2115
|
+
▸ **computeViewBoundingBoxes**(`segments`): `any`
|
|
2116
|
+
|
|
2117
|
+
#### Parameters
|
|
2118
|
+
|
|
2119
|
+
| Name | Type |
|
|
2120
|
+
| :------ | :------ |
|
|
2121
|
+
| `segments` | `Segment`[] |
|
|
2122
|
+
|
|
2123
|
+
#### Returns
|
|
2124
|
+
|
|
2125
|
+
`any`
|
|
2126
|
+
|
|
2127
|
+
#### Inherited from
|
|
2128
|
+
|
|
2129
|
+
LonganViewer.computeViewBoundingBoxes
|
|
2130
|
+
|
|
2131
|
+
___
|
|
2132
|
+
|
|
2113
2133
|
### convertCoordinate
|
|
2114
2134
|
|
|
2115
2135
|
▸ **convertCoordinate**(`in_coords`, `out_coords`, `in_pos`): `Float32Array`
|