@lumiscaphe/ng-viewer 14.2.0 → 14.2.1
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 +21 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -172,18 +172,13 @@ pick(): void {
|
|
|
172
172
|
| `position3D` | `Vector3D` | 3D position of the hotspot. |
|
|
173
173
|
| `visibility` | `Visiblity` | Visiblity of the hotspot. |
|
|
174
174
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
| Name | Type | Description |
|
|
178
|
-
| ---- | ------------- | ---------------------------------------------- |
|
|
179
|
-
| pov | `PointOfView` | Point of view of the VRCube widget. |
|
|
180
|
-
| fov | `number` | Field of view in degrees of the VRCube widget. |
|
|
175
|
+
##### Visibility
|
|
181
176
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
|
185
|
-
|
|
|
186
|
-
| `
|
|
177
|
+
| Name | Description |
|
|
178
|
+
| -------------- | ---------------------------------------------- |
|
|
179
|
+
| `Visible` | Hotspot found and visible. |
|
|
180
|
+
| `Occluded` | Hotspot found but occluded by another surface. |
|
|
181
|
+
| `OutOfFrustum` | Hotspot not found. |
|
|
187
182
|
|
|
188
183
|
#### PickResult
|
|
189
184
|
|
|
@@ -195,7 +190,7 @@ pick(): void {
|
|
|
195
190
|
| **point** | `Vector3D` | Point coordinates of the picked point. |
|
|
196
191
|
| **uvw** | `UVW` | UV coordinates of the picked point. |
|
|
197
192
|
|
|
198
|
-
|
|
193
|
+
##### Surface
|
|
199
194
|
|
|
200
195
|
| Name | Type | Description |
|
|
201
196
|
| -------- | ---------- | ------------------------ |
|
|
@@ -203,7 +198,7 @@ pick(): void {
|
|
|
203
198
|
| **name** | `string` | Name of the surface. |
|
|
204
199
|
| **tags** | `string[]` | Tag list of the surface. |
|
|
205
200
|
|
|
206
|
-
|
|
201
|
+
##### UVW
|
|
207
202
|
|
|
208
203
|
| Name | Type | Description |
|
|
209
204
|
| ----- | -------- | ------------- |
|
|
@@ -225,3 +220,16 @@ pick(): void {
|
|
|
225
220
|
| **x** | `number` | X coordinate. |
|
|
226
221
|
| **y** | `number` | Y coordinate. |
|
|
227
222
|
| **z** | `number` | Z coordinate. |
|
|
223
|
+
|
|
224
|
+
#### VRCube
|
|
225
|
+
|
|
226
|
+
| Name | Type | Description |
|
|
227
|
+
| ---- | ------------- | ---------------------------------------------- |
|
|
228
|
+
| pov | `PointOfView` | Point of view of the VRCube widget. |
|
|
229
|
+
| fov | `number` | Field of view in degrees of the VRCube widget. |
|
|
230
|
+
|
|
231
|
+
#### VRObject
|
|
232
|
+
|
|
233
|
+
| Name | Type | Description |
|
|
234
|
+
| ---------- | -------- | ---------------------------------- |
|
|
235
|
+
| `position` | `number` | Image inde of the VRObject widget. |
|