vrtalk-web-sdk 0.1.139 → 0.1.140
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.
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Vector3 } from '@/model';
|
|
2
|
+
export declare type VrNavigationPointType = 'sweep' | 'anywhere';
|
|
3
|
+
/**
|
|
4
|
+
* 导航点类型定义
|
|
5
|
+
*/
|
|
6
|
+
export declare class VrNavigationPointTypeDefine {
|
|
7
|
+
static sweep: VrNavigationPointType;
|
|
8
|
+
static anywhere: VrNavigationPointType;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* 导航点
|
|
12
|
+
*/
|
|
13
|
+
export declare class VrNavigationPoint {
|
|
14
|
+
type: VrNavigationPointType;
|
|
15
|
+
sweepId: string;
|
|
16
|
+
position: Vector3;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* 导航请求
|
|
20
|
+
*/
|
|
21
|
+
export declare class VrNavigationRequest {
|
|
22
|
+
startPoint: VrNavigationPoint;
|
|
23
|
+
endPoint: VrNavigationPoint;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* 导航路径
|
|
27
|
+
*/
|
|
28
|
+
export declare class VrNavigationPath {
|
|
29
|
+
pathPoints: VrNavigationPoint[];
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* 导航结果
|
|
33
|
+
*/
|
|
34
|
+
export declare class VrNavigationResult {
|
|
35
|
+
result: boolean;
|
|
36
|
+
pathList: VrNavigationPath[];
|
|
37
|
+
}
|