@realsee/five 5.0.0-alpha.36 → 5.0.0-alpha.40
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 +14 -6
- package/docs/classes/five.Camera.html +4 -4
- package/docs/classes/five.Five.html +4 -4
- package/docs/classes/five.HashCubeTexture.html +4 -4
- package/docs/classes/five.InternalWebGLRenderer.html +4 -4
- package/docs/classes/five.Model.html +4 -4
- package/docs/classes/five.NetworkSubscribe.html +4 -4
- package/docs/classes/five.PBMContainer.html +4 -4
- package/docs/classes/five.PBMGroup.html +4 -4
- package/docs/classes/five.PBMMaterial.html +4 -4
- package/docs/classes/five.PBMMesh.html +4 -4
- package/docs/classes/five.Scene.html +4 -4
- package/docs/classes/five.Subscribe.html +4 -4
- package/docs/classes/gltf_loader.GLTFLoader.html +4 -4
- package/docs/classes/gltf_loader.GLTFObject.html +4 -4
- package/docs/classes/line.Line.html +4 -4
- package/docs/classes/line.LineGeometry.html +4 -4
- package/docs/classes/line.LineMaterial.html +4 -4
- package/docs/classes/line.LineSegmentsGeometry.html +4 -4
- package/docs/classes/line.THREE_Line2.html +4 -4
- package/docs/classes/line.THREE_LineSegments2.html +4 -4
- package/docs/classes/react.Store.html +4 -4
- package/docs/classes/server.Model.html +4 -4
- package/docs/classes/server.PBMGroup.html +4 -4
- package/docs/classes/server.PBMMesh.html +4 -4
- package/docs/classes/sticker.Sticker.html +4 -4
- package/docs/index.html +33 -10
- package/docs/interfaces/five.AddableObject.html +4 -4
- package/docs/interfaces/five.DepthPanoramaControllerCustomInitArgs.html +4 -4
- package/docs/interfaces/five.EventCallback.html +4 -4
- package/docs/interfaces/five.FiveInitArgs.html +4 -4
- package/docs/interfaces/five.FloorplanControllerCustomInitArgs.html +4 -4
- package/docs/interfaces/five.ImageOptions.html +4 -4
- package/docs/interfaces/five.IntersectMeshInterface.html +4 -4
- package/docs/interfaces/five.Intersection.html +4 -4
- package/docs/interfaces/five.ModelControllerCustomInitArgs.html +4 -4
- package/docs/interfaces/five.ModelEventCallback.html +4 -4
- package/docs/interfaces/five.MovePanoOptions.html +4 -4
- package/docs/interfaces/five.PBMParameters.html +4 -4
- package/docs/interfaces/five.PanoCircleMeshInterface.html +4 -4
- package/docs/interfaces/five.PanoramaControllerCustomInitArgs.html +8 -8
- package/docs/interfaces/five.PanoramaLikeControllerCustomInitArgs.html +4 -4
- package/docs/interfaces/five.Pose.html +4 -4
- package/docs/interfaces/five.Scissor.html +4 -4
- package/docs/interfaces/five.State.html +4 -4
- package/docs/interfaces/five.SubscribeMixinType.emit.html +4 -4
- package/docs/interfaces/five.SubscribeMixinType.hasListener.html +4 -4
- package/docs/interfaces/five.SubscribeMixinType.off.html +4 -4
- package/docs/interfaces/five.SubscribeMixinType.on.html +4 -4
- package/docs/interfaces/five.SubscribeMixinType.once.html +4 -4
- package/docs/interfaces/five.TopviewControllerCustomInitArgs.html +4 -4
- package/docs/interfaces/five.VRPanoramaControllerCustomInitArgs.html +9 -9
- package/docs/interfaces/gltf_loader.GLTF.html +4 -4
- package/docs/interfaces/react.FiveActionReactCallbacks.html +4 -4
- package/docs/interfaces/react.FiveInjectionTypes.html +4 -4
- package/docs/interfaces/react.PropTypeOfFiveFeatures.html +4 -4
- package/docs/interfaces/server.Intersection.html +4 -4
- package/docs/interfaces/server.ModelEventCallback.html +4 -4
- package/docs/interfaces/sticker.IntersectionLike.html +4 -4
- package/docs/modules/five.SubscribeMixinType.html +4 -4
- package/docs/modules/five.html +4 -4
- package/docs/modules/gltf_loader.html +4 -4
- package/docs/modules/line.html +4 -4
- package/docs/modules/react.html +4 -4
- package/docs/modules/server.html +4 -4
- package/docs/modules/sticker.html +4 -4
- package/docs/modules.html +4 -4
- package/exporters/staticify.js +1 -1
- package/five/index.js +13 -13
- package/gltf-loader/index.js +2 -2
- package/line/index.js +2 -2
- package/package.json +1 -1
- package/react/index.js +3 -3
- package/server/index.js +3 -3
- package/sticker/index.js +2 -2
- package/umd/five-react.js +1 -1
- package/umd/five.js +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,12 @@ import { useFiveState } from "@realsee/five/react";
|
|
|
39
39
|
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
## 浏览器兼容性
|
|
43
|
+
|
|
44
|
+
| Safari | Safari on iOS | Chrome | Chrome for Android | Edge | Firefox |
|
|
45
|
+
|:------:|:-------------:|--------:|:------------------:|:----:|:-------:|
|
|
46
|
+
| >= 9 | >= 9 | >= 49 | >= 93 | >= 13| >= 45 |
|
|
47
|
+
|
|
42
48
|
## 快速上手
|
|
43
49
|
|
|
44
50
|
**Five**提供了快速上手体验的项目生成工具,您可以通过他熟悉**Five**的功能以及尝试基于**Five**开发功能。
|
|
@@ -340,15 +346,17 @@ interface State {
|
|
|
340
346
|
**State**的数据描述
|
|
341
347
|
|
|
342
348
|
- `mode`: 当前的模态
|
|
343
|
-
Five
|
|
344
|
-
-
|
|
345
|
-
-
|
|
346
|
-
-
|
|
347
|
-
- Model:
|
|
348
|
-
- VRPanorama: VR
|
|
349
|
+
Five 常用有 5 种模态,可以使用 `Five.Mode` 获得
|
|
350
|
+
- Panorama: 全景游走模态,该模态下视图将在采集点间游走,手势操作可以旋转/放大视角/切换采集点,适合查看采集的全景信息。
|
|
351
|
+
- Floorplan: 空间总览模态, 该模态下视图以模型为中心,手势操作可以旋转/放大模型/切换楼层,适合查看模型的整体效果。
|
|
352
|
+
- Topview: 户型图模态,该模态下视图以模型为中心,垂直俯视模型,手势操作可以平移/放大模型/切换楼层,适合查看模型平面结构。
|
|
353
|
+
- Model: 模型游走模态,该模态下视图将在模型中自由游走,手势操作可以旋转/放大视角/位移,适合查看模型的细节,做一些定位操作。
|
|
354
|
+
- VRPanorama: VR 眼镜模态,该模态下可以使用 [Cardboard 眼镜](https://arvr.google.com/cardboard/) 或者他的第三方衍生产品,实现 VR 虚拟显示效果。
|
|
349
355
|
|
|
350
356
|
- `panoIndex`: 采集点位
|
|
351
357
|
|
|
352
358
|
- `longitude` / `latitude`: 相机的水平角 / 相机的偏航角(弧度),我们使用类似经纬度的方式描述相机位置。
|
|
353
359
|
|
|
354
360
|
- `fov`: 相机垂直方向的可视角度 (角度)
|
|
361
|
+
|
|
362
|
+
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Camera | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>Camera | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Five | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>Five | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>HashCubeTexture | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>HashCubeTexture | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>InternalWebGLRenderer | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>InternalWebGLRenderer | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Model | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>Model | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>NetworkSubscribe | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>NetworkSubscribe | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>PBMContainer | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>PBMContainer | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>PBMGroup | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>PBMGroup | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>PBMMaterial | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>PBMMaterial | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>PBMMesh | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>PBMMesh | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Scene | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>Scene | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Subscribe | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>Subscribe | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/five.html">five</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>GLTFLoader | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>GLTFLoader | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/gltf_loader.html">gltf-loader</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>GLTFObject | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>GLTFObject | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/gltf_loader.html">gltf-loader</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Line | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>Line | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/line.html">line</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>LineGeometry | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>LineGeometry | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/line.html">line</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>LineMaterial | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>LineMaterial | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/line.html">line</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>LineSegmentsGeometry | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>LineSegmentsGeometry | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/line.html">line</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>THREE_Line2 | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>THREE_Line2 | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/line.html">line</a>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>THREE_LineSegments2 | 如视 Five SDK - v5.0.0-alpha.
|
|
7
|
-
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.
|
|
6
|
+
<title>THREE_LineSegments2 | 如视 Five SDK - v5.0.0-alpha.40</title>
|
|
7
|
+
<meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.40">
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
10
|
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<li class="state loading">Preparing search index...</li>
|
|
24
24
|
<li class="state failure">The search index is not available</li>
|
|
25
25
|
</ul>
|
|
26
|
-
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.
|
|
26
|
+
<a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
27
27
|
</div>
|
|
28
28
|
<div class="table-cell" id="tsd-widgets">
|
|
29
29
|
<div id="tsd-filter">
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<div class="container">
|
|
51
51
|
<ul class="tsd-breadcrumb">
|
|
52
52
|
<li>
|
|
53
|
-
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.
|
|
53
|
+
<a href="../modules.html">如视 Five SDK - v5.0.0-alpha.40</a>
|
|
54
54
|
</li>
|
|
55
55
|
<li>
|
|
56
56
|
<a href="../modules/line.html">line</a>
|