@realsee/five 5.0.0-alpha.16 → 5.0.0-alpha.161

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.
Files changed (257) hide show
  1. package/README.md +21 -11
  2. package/docs/.nojekyll +1 -0
  3. package/docs/assets/highlight.css +134 -0
  4. package/docs/assets/icons.css +1043 -0
  5. package/docs/assets/{images/icons.png → icons.png} +0 -0
  6. package/docs/assets/{images/icons@2x.png → icons@2x.png} +0 -0
  7. package/docs/assets/main.js +52 -0
  8. package/docs/assets/search.js +1 -0
  9. package/docs/assets/style.css +1414 -0
  10. package/docs/assets/{images/widgets.png → widgets.png} +0 -0
  11. package/docs/assets/{images/widgets@2x.png → widgets@2x.png} +0 -0
  12. package/docs/classes/five.AnimationFrameLoop.html +15 -0
  13. package/docs/classes/five.BVH.html +10 -0
  14. package/docs/classes/five.BVHIntersect.html +1 -0
  15. package/docs/classes/five.BVHNode.html +7 -0
  16. package/docs/classes/five.BVHVector3.html +1 -0
  17. package/docs/classes/five.Camera.html +11 -0
  18. package/docs/classes/five.Clipper.html +1 -0
  19. package/docs/classes/five.Five.html +338 -0
  20. package/docs/classes/five.InternalWebGLRenderer.html +1 -0
  21. package/docs/classes/five.IntersectMesh.html +1 -0
  22. package/docs/classes/five.LegacyPanoCircleMesh.html +5 -0
  23. package/docs/classes/five.Model.html +87 -0
  24. package/docs/classes/five.NetworkSubscribe.html +50 -0
  25. package/docs/classes/five.PBMContainer.html +17 -0
  26. package/docs/classes/five.PBMGroup.html +19 -0
  27. package/docs/classes/five.PBMMaterial.html +27 -0
  28. package/docs/classes/five.PBMMesh.html +7 -0
  29. package/docs/classes/five.PanoCircleMesh.html +7 -0
  30. package/docs/classes/five.PanoCircleMeshDark.html +8 -0
  31. package/docs/classes/five.PanoCircleMeshSolid.html +7 -0
  32. package/docs/classes/five.Scene.html +3 -0
  33. package/docs/classes/five.Subscribe.html +56 -0
  34. package/docs/classes/five.TextureLoader.html +1 -0
  35. package/docs/classes/five.Tile3D.html +34 -0
  36. package/docs/classes/five.Tile3DModel.html +15 -0
  37. package/docs/classes/five.TileBoundingSphere.html +1 -0
  38. package/docs/classes/five.TileCacheNode.html +1 -0
  39. package/docs/classes/five.TileCubeTextureTarget.html +1 -0
  40. package/docs/classes/five.TileCullingVolume.html +1 -0
  41. package/docs/classes/five.TileOrientedBoundingBox.html +1 -0
  42. package/docs/classes/five.TilePlane.html +1 -0
  43. package/docs/classes/five.TileRequestScheduler.html +16 -0
  44. package/docs/classes/five.Tileset3D.html +11 -0
  45. package/docs/classes/five.Tileset3DTraverser.html +1 -0
  46. package/docs/classes/five.TilesetCache.html +1 -0
  47. package/docs/classes/five.Work.html +30 -0
  48. package/docs/classes/five.XRButton.html +1 -0
  49. package/docs/classes/gltf_loader.DDSLoader.html +1 -0
  50. package/docs/classes/gltf_loader.DRACOLoader.html +1 -0
  51. package/docs/classes/gltf_loader.GLTFLoader.html +17 -0
  52. package/docs/classes/gltf_loader.GLTFObject.html +7 -0
  53. package/docs/classes/gltf_loader.GLTFParser.html +1 -0
  54. package/docs/classes/gltf_loader.THREEGLTFLoader.html +1 -0
  55. package/docs/classes/line.Line.html +1 -0
  56. package/docs/classes/line.LineGeometry.html +1 -0
  57. package/docs/classes/line.LineMaterial.html +1 -0
  58. package/docs/classes/line.LineSegmentsGeometry.html +1 -0
  59. package/docs/classes/line.THREE_Line2.html +1 -0
  60. package/docs/classes/line.THREE_LineSegments2.html +1 -0
  61. package/docs/classes/react.Store.html +29 -0
  62. package/docs/classes/server.BVH.html +10 -0
  63. package/docs/classes/server.BVHIntersect.html +1 -0
  64. package/docs/classes/server.BVHNode.html +7 -0
  65. package/docs/classes/server.BVHVector3.html +1 -0
  66. package/docs/classes/server.Model.html +63 -0
  67. package/docs/classes/server.PBMGroup.html +9 -0
  68. package/docs/classes/server.PBMMesh.html +7 -0
  69. package/docs/classes/sticker.Sticker.html +32 -0
  70. package/docs/classes/vfx.Airflow.html +1 -0
  71. package/docs/classes/vfx.Flame.html +1 -0
  72. package/docs/classes/vfx.Particle.html +89 -0
  73. package/docs/classes/vfx.SpotLight.html +1 -0
  74. package/docs/index.html +166 -434
  75. package/docs/interfaces/five.AddableObject.html +1 -0
  76. package/docs/interfaces/five.AnimationFrame.html +1 -0
  77. package/docs/interfaces/five.CameraPose.html +1 -0
  78. package/docs/interfaces/five.ClipperParameter.html +1 -0
  79. package/docs/interfaces/five.DepthPanoramaControllerCustomInitArgs.html +28 -0
  80. package/docs/interfaces/five.EventCallback.html +400 -0
  81. package/docs/interfaces/five.FiveInitArgs.html +109 -0
  82. package/docs/interfaces/five.FloorplanControllerCustomInitArgs.html +17 -0
  83. package/docs/interfaces/five.ImageOptions.html +18 -0
  84. package/docs/interfaces/five.ImageURLMappings.html +1 -0
  85. package/docs/interfaces/five.ImageURLOptions.html +17 -0
  86. package/docs/interfaces/five.IntersectMeshInterface.html +3 -0
  87. package/docs/interfaces/five.Intersection.html +7 -0
  88. package/docs/interfaces/five.MapviewControllerCustomInitArgs.html +15 -0
  89. package/docs/interfaces/five.ModelControllerCustomInitArgs.html +20 -0
  90. package/docs/interfaces/five.ModelEventCallback.html +22 -0
  91. package/docs/interfaces/five.MotionKeyframe.html +1 -0
  92. package/docs/interfaces/five.MovePanoOptions.html +42 -0
  93. package/docs/interfaces/five.NetworkOptions.html +9 -0
  94. package/docs/interfaces/five.PBMPanoPicture.html +7 -0
  95. package/docs/interfaces/five.PBMParameters.html +27 -0
  96. package/docs/interfaces/five.PanoCircleMeshInterface.html +19 -0
  97. package/docs/interfaces/five.PanoramaControllerCustomInitArgs.html +35 -0
  98. package/docs/interfaces/five.PanoramaLikeControllerCustomInitArgs.html +20 -0
  99. package/docs/interfaces/five.Pose.html +37 -0
  100. package/docs/interfaces/five.Scissor.html +14 -0
  101. package/docs/interfaces/five.State.html +21 -0
  102. package/docs/interfaces/five.SubscribeMixinType.emit.html +1 -0
  103. package/docs/interfaces/five.SubscribeMixinType.hasListener.html +1 -0
  104. package/docs/interfaces/five.SubscribeMixinType.off.html +1 -0
  105. package/docs/interfaces/five.SubscribeMixinType.on.html +1 -0
  106. package/docs/interfaces/five.SubscribeMixinType.once.html +1 -0
  107. package/docs/interfaces/five.TextureOptions.html +20 -0
  108. package/docs/interfaces/five.Tile3DModelLoaderOptions.html +3 -0
  109. package/docs/interfaces/five.TileBoundingVolume.html +19 -0
  110. package/docs/interfaces/five.TileContent.html +1 -0
  111. package/docs/interfaces/five.TileCubeNode.html +1 -0
  112. package/docs/interfaces/five.TileCubeTree.html +1 -0
  113. package/docs/interfaces/five.Tileset3dOptions.html +1 -0
  114. package/docs/interfaces/five.TilesetJSON.html +1 -0
  115. package/docs/interfaces/five.TilesetJSONNode.html +1 -0
  116. package/docs/interfaces/five.TopviewControllerCustomInitArgs.html +9 -0
  117. package/docs/interfaces/five.VRPanoramaControllerCustomInitArgs.html +31 -0
  118. package/docs/interfaces/five.WebXRSelectParams.html +1 -0
  119. package/docs/interfaces/five.WorkCubeImage.html +13 -0
  120. package/docs/interfaces/five.WorkImage.html +21 -0
  121. package/docs/interfaces/five.WorkInitial.html +13 -0
  122. package/docs/interfaces/five.WorkModel.html +11 -0
  123. package/docs/interfaces/five.WorkModelTiles.html +3 -0
  124. package/docs/interfaces/five.WorkObserver.html +25 -0
  125. package/docs/interfaces/five.WorkTile.html +1 -0
  126. package/docs/interfaces/five.WorkVideo.html +9 -0
  127. package/docs/interfaces/five.XRPanoramaControllerCustomInitArgs.html +31 -0
  128. package/docs/interfaces/gltf_loader.DDS.html +1 -0
  129. package/docs/interfaces/gltf_loader.GLTF.html +7 -0
  130. package/docs/interfaces/gltf_loader.GLTFReference.html +1 -0
  131. package/docs/interfaces/gltf_loader.THREEGLTF.html +1 -0
  132. package/docs/interfaces/react.FiveActionReactCallbacks.html +62 -0
  133. package/docs/interfaces/react.FiveInjectionTypes.html +191 -0
  134. package/docs/interfaces/react.PropTypeOfFiveFeatures.html +1 -0
  135. package/docs/interfaces/server.Intersection.html +7 -0
  136. package/docs/interfaces/server.ModelEventCallback.html +18 -0
  137. package/docs/interfaces/sticker.IntersectionLike.html +8 -0
  138. package/docs/interfaces/vfx.ParticleArgs.html +75 -0
  139. package/docs/interfaces/vfx.ParticleTweenKeyframe.html +1 -0
  140. package/docs/interfaces/vue.FiveActionVueCallbacks.html +62 -0
  141. package/docs/modules/five.SubscribeMixinType.html +1 -0
  142. package/docs/modules/five.html +479 -3002
  143. package/docs/modules/gltf_loader.html +1 -155
  144. package/docs/modules/line.html +1 -202
  145. package/docs/modules/react.html +133 -1507
  146. package/docs/modules/server.html +18 -526
  147. package/docs/modules/sticker.html +1 -151
  148. package/docs/modules/vfx.html +1 -0
  149. package/docs/modules/vue.html +112 -0
  150. package/docs/modules.html +1 -136
  151. package/exporters/staticify.js +210 -0
  152. package/five/index.d.ts +1445 -264
  153. package/five/index.js +372 -1
  154. package/gltf-loader/index.d.ts +90 -5
  155. package/gltf-loader/index.js +260 -1
  156. package/line/index.d.ts +15 -2
  157. package/line/index.js +260 -1
  158. package/package.json +13 -13
  159. package/react/index.d.ts +75 -22
  160. package/react/index.js +260 -1
  161. package/resource/{basis_transcoder.js → basis/basis_transcoder.js} +0 -0
  162. package/resource/{basis_transcoder.wasm → basis/basis_transcoder.wasm} +0 -0
  163. package/resource/{draco_decoder.js → gltf/draco_decoder.js} +0 -0
  164. package/resource/{draco_decoder.wasm → gltf/draco_decoder.wasm} +0 -0
  165. package/resource/{draco_wasm_wrapper.js → gltf/draco_wasm_wrapper.js} +0 -0
  166. package/scripts/five-staticify.js +26 -0
  167. package/server/index.d.ts +197 -26
  168. package/server/index.js +367 -1
  169. package/sticker/index.d.ts +2 -1
  170. package/sticker/index.js +260 -1
  171. package/templates/quick-start/README.md +1 -1
  172. package/templates/quick-start/package.json +1 -1
  173. package/umd/five-gltf-loader.js +1 -0
  174. package/umd/five-gltf-loader.js.LICENSE.txt +14 -0
  175. package/umd/five-line.js +1 -0
  176. package/umd/five-line.js.LICENSE.txt +14 -0
  177. package/umd/five-react.js +1 -0
  178. package/umd/five-react.js.LICENSE.txt +14 -0
  179. package/umd/five-sticker.js +1 -0
  180. package/umd/five-sticker.js.LICENSE.txt +14 -0
  181. package/umd/five-vfx.js +1 -0
  182. package/umd/five-vue.js +1 -0
  183. package/umd/five.js +2 -0
  184. package/umd/five.js.LICENSE.txt +107 -0
  185. package/vfx/index.d.ts +264 -0
  186. package/vfx/index.js +260 -0
  187. package/vue/index.d.ts +440 -0
  188. package/vue/index.js +260 -0
  189. package/bundles/five.js +0 -2
  190. package/bundles/five.js.LICENSE.txt +0 -160
  191. package/docs/assets/css/main.css +0 -2660
  192. package/docs/assets/js/main.js +0 -248
  193. package/docs/assets/js/search.js +0 -1
  194. package/docs/classes/five.camera.html +0 -323
  195. package/docs/classes/five.five-1.html +0 -2670
  196. package/docs/classes/five.hashcubetexture.html +0 -252
  197. package/docs/classes/five.internalwebglrenderer.html +0 -212
  198. package/docs/classes/five.model.html +0 -982
  199. package/docs/classes/five.pbmgroup.html +0 -427
  200. package/docs/classes/five.pbmmaterial.html +0 -533
  201. package/docs/classes/five.pbmmesh.html +0 -254
  202. package/docs/classes/five.scene.html +0 -263
  203. package/docs/classes/five.subscribe.html +0 -569
  204. package/docs/classes/gltf_loader.gltfloader.html +0 -412
  205. package/docs/classes/gltf_loader.gltfobject.html +0 -287
  206. package/docs/classes/line.line-1.html +0 -381
  207. package/docs/classes/line.linegeometry.html +0 -524
  208. package/docs/classes/line.linematerial.html +0 -300
  209. package/docs/classes/line.linesegmentsgeometry.html +0 -471
  210. package/docs/classes/react.store.html +0 -605
  211. package/docs/classes/server.model.html +0 -823
  212. package/docs/classes/server.pbmgroup.html +0 -366
  213. package/docs/classes/server.pbmmesh.html +0 -335
  214. package/docs/classes/sticker.sticker-1.html +0 -465
  215. package/docs/interfaces/five.addableobject.html +0 -234
  216. package/docs/interfaces/five.depthpanoramacontrollercustominitargs.html +0 -420
  217. package/docs/interfaces/five.eventcallback.html +0 -2548
  218. package/docs/interfaces/five.fiveinitargs.html +0 -707
  219. package/docs/interfaces/five.floorplancontrollercustominitargs.html +0 -295
  220. package/docs/interfaces/five.imageoptions.html +0 -332
  221. package/docs/interfaces/five.intersection.html +0 -227
  222. package/docs/interfaces/five.intersectmeshinterface.html +0 -188
  223. package/docs/interfaces/five.modelcontrollercustominitargs.html +0 -366
  224. package/docs/interfaces/five.modeleventcallback.html +0 -367
  225. package/docs/interfaces/five.movepanooptions.html +0 -469
  226. package/docs/interfaces/five.panocirclemeshinterface.html +0 -361
  227. package/docs/interfaces/five.panoramacontrollercustominitargs.html +0 -464
  228. package/docs/interfaces/five.panoramalikecontrollercustominitargs.html +0 -364
  229. package/docs/interfaces/five.pbmparameters.html +0 -474
  230. package/docs/interfaces/five.pose.html +0 -270
  231. package/docs/interfaces/five.scissor.html +0 -252
  232. package/docs/interfaces/five.state.html +0 -300
  233. package/docs/interfaces/five.subscribemixintype.emit.html +0 -180
  234. package/docs/interfaces/five.subscribemixintype.haslistener.html +0 -171
  235. package/docs/interfaces/five.subscribemixintype.off.html +0 -198
  236. package/docs/interfaces/five.subscribemixintype.on.html +0 -213
  237. package/docs/interfaces/five.subscribemixintype.once.html +0 -210
  238. package/docs/interfaces/five.topviewcontrollercustominitargs.html +0 -226
  239. package/docs/interfaces/five.vrpanoramacontrollercustominitargs.html +0 -452
  240. package/docs/interfaces/gltf_loader.gltf.html +0 -304
  241. package/docs/interfaces/react.fiveactionreactcallbacks.html +0 -580
  242. package/docs/interfaces/react.fiveinjectiontypes.html +0 -1625
  243. package/docs/interfaces/react.injectfivetoprops.html +0 -280
  244. package/docs/interfaces/server.intersection.html +0 -308
  245. package/docs/interfaces/server.modeleventcallback.html +0 -409
  246. package/docs/interfaces/sticker.intersectionlike.html +0 -223
  247. package/docs/modules/five.subscribemixintype.html +0 -143
  248. package/five.js.LICENSE.txt +0 -160
  249. package/scripts/export-five-resource/chfs.exe +0 -0
  250. package/scripts/export-five-resource/fileify.js +0 -192
  251. package/scripts/export-five-resource/format-work.js +0 -71
  252. package/scripts/export-five-resource/staticify.js +0 -327
  253. package/scripts/transcode-model/BufferGeometryUtils.js +0 -832
  254. package/scripts/transcode-model/LoaderSupport.js +0 -1545
  255. package/scripts/transcode-model/MTLLoader.js +0 -602
  256. package/scripts/transcode-model/OBJLoader2.js +0 -1470
  257. package/scripts/transcode-model/obj2pbm.js +0 -65
@@ -1,982 +0,0 @@
1
- <!doctype html>
2
- <html class="default no-js">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <title>Model | 如视 Five SDK - v5.0.0-alpha.16</title>
7
- <meta name="description" content="Documentation for 如视 Five SDK - v5.0.0-alpha.16">
8
- <meta name="viewport" content="width=device-width, initial-scale=1">
9
- <link rel="stylesheet" href="../assets/css/main.css">
10
- <script async src="../assets/js/search.js" id="search-script"></script>
11
- </head>
12
- <body>
13
- <header>
14
- <div class="tsd-page-toolbar">
15
- <div class="container">
16
- <div class="table-wrap">
17
- <div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
18
- <div class="field">
19
- <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
20
- <input id="tsd-search-field" type="text" />
21
- </div>
22
- <ul class="results">
23
- <li class="state loading">Preparing search index...</li>
24
- <li class="state failure">The search index is not available</li>
25
- </ul>
26
- <a href="../index.html" class="title">如视 Five SDK - v5.0.0-alpha.16</a>
27
- </div>
28
- <div class="table-cell" id="tsd-widgets">
29
- <div id="tsd-filter">
30
- <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
31
- <div class="tsd-filter-group">
32
- <div class="tsd-select" id="tsd-filter-visibility">
33
- <span class="tsd-select-label">All</span>
34
- <ul class="tsd-select-list">
35
- <li data-value="public">Public</li>
36
- <li data-value="protected">Public/Protected</li>
37
- <li data-value="private" class="selected">All</li>
38
- </ul>
39
- </div>
40
- <input type="checkbox" id="tsd-filter-inherited" checked />
41
- <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
42
- </div>
43
- </div>
44
- <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
45
- </div>
46
- </div>
47
- </div>
48
- </div>
49
- <div class="tsd-page-title">
50
- <div class="container">
51
- <ul class="tsd-breadcrumb">
52
- <li>
53
- <a href="../modules.html">如视 Five SDK - v5.0.0-alpha.16</a>
54
- </li>
55
- <li>
56
- <a href="../modules/five.html">five</a>
57
- </li>
58
- <li>
59
- <a href="five.model.html">Model</a>
60
- </li>
61
- </ul>
62
- <h1>Class Model</h1>
63
- </div>
64
- </div>
65
- </header>
66
- <div class="container container-main">
67
- <div class="row">
68
- <div class="col-8 col-content">
69
- <section class="tsd-panel tsd-comment">
70
- <div class="tsd-comment tsd-typography">
71
- <div class="lead">
72
- <p>Five 模型</p>
73
- </div>
74
- <dl class="tsd-comment-tags">
75
- <dt>description</dt>
76
- <dd><p>通过 work 数据加载, 适配 at3d、pbm、dome、domez 格式的文件
77
- 可以通过 jsonp 解析 base64 的 dataURL 内容,
78
- 需要满足 your/path/filename.at3d.json_xxxxxx,
79
- 通过 json_xxxxxx(<dataURL>) 方式返回。</p>
80
- </dd>
81
- </dl>
82
- </div>
83
- </section>
84
- <section class="tsd-panel tsd-hierarchy">
85
- <h3>Hierarchy</h3>
86
- <ul class="tsd-hierarchy">
87
- <li>
88
- <a href="five.pbmgroup.html" class="tsd-signature-type" data-tsd-kind="Class">PBMGroup</a>
89
- <ul class="tsd-hierarchy">
90
- <li>
91
- <span class="target">Model</span>
92
- </li>
93
- </ul>
94
- </li>
95
- </ul>
96
- </section>
97
- <section class="tsd-panel">
98
- <h3>Implements</h3>
99
- <ul class="tsd-hierarchy">
100
- <li><a href="five.subscribe.html" class="tsd-signature-type" data-tsd-kind="Class">Subscribe</a><span class="tsd-signature-symbol">&lt;</span><a href="../modules/five.html#modeleventtype" class="tsd-signature-type" data-tsd-kind="Type alias">ModelEventType</a><span class="tsd-signature-symbol">&gt;</span></li>
101
- </ul>
102
- </section>
103
- <section class="tsd-panel-group tsd-index-group">
104
- <h2>Index</h2>
105
- <section class="tsd-panel tsd-index-panel">
106
- <div class="tsd-index-content">
107
- <section class="tsd-index-section ">
108
- <h3>Constructors</h3>
109
- <ul class="tsd-index-list">
110
- <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite"><a href="five.model.html#constructor" class="tsd-kind-icon">constructor</a></li>
111
- </ul>
112
- </section>
113
- <section class="tsd-index-section ">
114
- <h3>Properties</h3>
115
- <ul class="tsd-index-list">
116
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#bounding" class="tsd-kind-icon">bounding</a></li>
117
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#bvhs" class="tsd-kind-icon">bvhs</a></li>
118
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#emit" class="tsd-kind-icon">emit</a></li>
119
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#empty" class="tsd-kind-icon">empty</a></li>
120
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#floorindex" class="tsd-kind-icon">floor<wbr>Index</a></li>
121
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#floorlength" class="tsd-kind-icon">floor<wbr>Length</a></li>
122
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#haslistener" class="tsd-kind-icon">has<wbr>Listener</a></li>
123
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#loaded" class="tsd-kind-icon">loaded</a></li>
124
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#needsrender" class="tsd-kind-icon">needs<wbr>Render</a></li>
125
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#off" class="tsd-kind-icon">off</a></li>
126
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#on" class="tsd-kind-icon">on</a></li>
127
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#once" class="tsd-kind-icon">once</a></li>
128
- <li class="tsd-kind-property tsd-parent-kind-class"><a href="five.model.html#shownfloor" class="tsd-kind-icon">shown<wbr>Floor</a></li>
129
- </ul>
130
- </section>
131
- <section class="tsd-index-section ">
132
- <h3>Accessors</h3>
133
- <ul class="tsd-index-list">
134
- <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="five.model.html#shownfloor-1" class="tsd-kind-icon">shownfloor</a></li>
135
- </ul>
136
- </section>
137
- <section class="tsd-index-section ">
138
- <h3>Methods</h3>
139
- <ul class="tsd-index-list">
140
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#buildbvh" class="tsd-kind-icon">buildBVH</a></li>
141
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#dispose" class="tsd-kind-icon">dispose</a></li>
142
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#disposegeometry" class="tsd-kind-icon">dispose<wbr>Geometry</a></li>
143
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#disposematerial" class="tsd-kind-icon">dispose<wbr>Material</a></li>
144
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#getedges" class="tsd-kind-icon">get<wbr>Edges</a></li>
145
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#getmaterial" class="tsd-kind-icon">get<wbr>Material</a></li>
146
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#gettransparent" class="tsd-kind-icon">get<wbr>Transparent</a></li>
147
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#hasfloors" class="tsd-kind-icon">has<wbr>Floors</a></li>
148
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><a href="five.model.html#hasfloors_" class="tsd-kind-icon">has<wbr>Floors_</a></li>
149
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#intersectraycaster" class="tsd-kind-icon">intersect<wbr>Raycaster</a></li>
150
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#load" class="tsd-kind-icon">load</a></li>
151
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#setmaterial" class="tsd-kind-icon">set<wbr>Material</a></li>
152
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="five.model.html#settransparent" class="tsd-kind-icon">set<wbr>Transparent</a></li>
153
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="five.model.html#show" class="tsd-kind-icon">show</a></li>
154
- </ul>
155
- </section>
156
- </div>
157
- </section>
158
- </section>
159
- <section class="tsd-panel-group tsd-member-group ">
160
- <h2>Constructors</h2>
161
- <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
162
- <a name="constructor" class="tsd-anchor"></a>
163
- <h3>constructor</h3>
164
- <ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
165
- <li class="tsd-signature tsd-kind-icon">new <wbr>Model<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="five.model.html" class="tsd-signature-type" data-tsd-kind="Class">Model</a></li>
166
- </ul>
167
- <ul class="tsd-descriptions">
168
- <li class="tsd-description">
169
- <aside class="tsd-sources">
170
- <p>Overrides <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#constructor">constructor</a></p>
171
- <ul>
172
- <li>Defined in lib/five/loaders/model/index.ts:159</li>
173
- </ul>
174
- </aside>
175
- <h4 class="tsd-returns-title">Returns <a href="five.model.html" class="tsd-signature-type" data-tsd-kind="Class">Model</a></h4>
176
- </li>
177
- </ul>
178
- </section>
179
- </section>
180
- <section class="tsd-panel-group tsd-member-group ">
181
- <h2>Properties</h2>
182
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
183
- <a name="bounding" class="tsd-anchor"></a>
184
- <h3>bounding</h3>
185
- <div class="tsd-signature tsd-kind-icon">bounding<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Box3</span></div>
186
- <aside class="tsd-sources">
187
- <ul>
188
- <li>Defined in lib/five/loaders/model/index.ts:120</li>
189
- </ul>
190
- </aside>
191
- <div class="tsd-comment tsd-typography">
192
- <div class="lead">
193
- <p>外接盒子的大小</p>
194
- </div>
195
- </div>
196
- </section>
197
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
198
- <a name="bvhs" class="tsd-anchor"></a>
199
- <h3>bvhs</h3>
200
- <div class="tsd-signature tsd-kind-icon">bvhs<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> &amp; </span><span class="tsd-signature-symbol">{ </span>loaded<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> }</span></div>
201
- <aside class="tsd-sources">
202
- <ul>
203
- <li>Defined in lib/five/loaders/model/index.ts:159</li>
204
- </ul>
205
- </aside>
206
- <div class="tsd-comment tsd-typography">
207
- <div class="lead">
208
- <p>bvh 树的计算结果</p>
209
- </div>
210
- </div>
211
- </section>
212
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
213
- <a name="emit" class="tsd-anchor"></a>
214
- <h3>emit</h3>
215
- <div class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">:</span> <a href="../interfaces/five.subscribemixintype.emit.html" class="tsd-signature-type" data-tsd-kind="Interface">emit</a><span class="tsd-signature-symbol">&lt;</span><a href="../modules/five.html#modeleventtype" class="tsd-signature-type" data-tsd-kind="Type alias">ModelEventType</a><span class="tsd-signature-symbol">&gt;</span></div>
216
- <aside class="tsd-sources">
217
- <p>Implementation of Subscribe.emit</p>
218
- <ul>
219
- <li>Defined in lib/five/loaders/model/index.ts:156</li>
220
- </ul>
221
- </aside>
222
- <div class="tsd-comment tsd-typography">
223
- <div class="lead">
224
- <p>触发事件
225
- 具体可查看 <a href="five.subscribe.html#emit">Subscribe.emit</a></p>
226
- </div>
227
- </div>
228
- </section>
229
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
230
- <a name="empty" class="tsd-anchor"></a>
231
- <h3>empty</h3>
232
- <div class="tsd-signature tsd-kind-icon">empty<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
233
- <aside class="tsd-sources">
234
- <ul>
235
- <li>Defined in lib/five/loaders/model/index.ts:117</li>
236
- </ul>
237
- </aside>
238
- <div class="tsd-comment tsd-typography">
239
- <div class="lead">
240
- <p>是否未加载</p>
241
- </div>
242
- </div>
243
- </section>
244
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
245
- <a name="floorindex" class="tsd-anchor"></a>
246
- <h3>floor<wbr>Index</h3>
247
- <div class="tsd-signature tsd-kind-icon">floor<wbr>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
248
- <aside class="tsd-sources">
249
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#floorindex">floorIndex</a></p>
250
- <ul>
251
- <li>Defined in lib/five/core/pbmGroup.ts:9</li>
252
- </ul>
253
- </aside>
254
- <div class="tsd-comment tsd-typography">
255
- <div class="lead">
256
- <p>楼层序号</p>
257
- </div>
258
- </div>
259
- </section>
260
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
261
- <a name="floorlength" class="tsd-anchor"></a>
262
- <h3>floor<wbr>Length</h3>
263
- <div class="tsd-signature tsd-kind-icon">floor<wbr>Length<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
264
- <aside class="tsd-sources">
265
- <ul>
266
- <li>Defined in lib/five/loaders/model/index.ts:126</li>
267
- </ul>
268
- </aside>
269
- <div class="tsd-comment tsd-typography">
270
- <div class="lead">
271
- <p>楼层的数量</p>
272
- </div>
273
- </div>
274
- </section>
275
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
276
- <a name="haslistener" class="tsd-anchor"></a>
277
- <h3>has<wbr>Listener</h3>
278
- <div class="tsd-signature tsd-kind-icon">has<wbr>Listener<span class="tsd-signature-symbol">:</span> <a href="../interfaces/five.subscribemixintype.haslistener.html" class="tsd-signature-type" data-tsd-kind="Interface">hasListener</a><span class="tsd-signature-symbol">&lt;</span><a href="../modules/five.html#modeleventtype" class="tsd-signature-type" data-tsd-kind="Type alias">ModelEventType</a><span class="tsd-signature-symbol">&gt;</span></div>
279
- <aside class="tsd-sources">
280
- <p>Implementation of Subscribe.hasListener</p>
281
- <ul>
282
- <li>Defined in lib/five/loaders/model/index.ts:132</li>
283
- </ul>
284
- </aside>
285
- <div class="tsd-comment tsd-typography">
286
- <div class="lead">
287
- <p>判断是否注册了事件
288
- 具体可查看 <a href="five.subscribe.html#haslistener">Subscribe.hasListener</a></p>
289
- </div>
290
- </div>
291
- </section>
292
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
293
- <a name="loaded" class="tsd-anchor"></a>
294
- <h3>loaded</h3>
295
- <div class="tsd-signature tsd-kind-icon">loaded<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
296
- <aside class="tsd-sources">
297
- <ul>
298
- <li>Defined in lib/five/loaders/model/index.ts:114</li>
299
- </ul>
300
- </aside>
301
- <div class="tsd-comment tsd-typography">
302
- <div class="lead">
303
- <p>是否加载完成</p>
304
- </div>
305
- </div>
306
- </section>
307
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
308
- <a name="needsrender" class="tsd-anchor"></a>
309
- <h3>needs<wbr>Render</h3>
310
- <div class="tsd-signature tsd-kind-icon">needs<wbr>Render<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></div>
311
- <aside class="tsd-sources">
312
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#needsrender">needsRender</a></p>
313
- <ul>
314
- <li>Defined in lib/five/core/pbmGroup.ts:12</li>
315
- </ul>
316
- </aside>
317
- <div class="tsd-comment tsd-typography">
318
- <div class="lead">
319
- <p>是否需要更新按需渲染</p>
320
- </div>
321
- </div>
322
- </section>
323
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
324
- <a name="off" class="tsd-anchor"></a>
325
- <h3>off</h3>
326
- <div class="tsd-signature tsd-kind-icon">off<span class="tsd-signature-symbol">:</span> <a href="../interfaces/five.subscribemixintype.off.html" class="tsd-signature-type" data-tsd-kind="Interface">off</a><span class="tsd-signature-symbol">&lt;</span><a href="../modules/five.html#modeleventtype" class="tsd-signature-type" data-tsd-kind="Type alias">ModelEventType</a><span class="tsd-signature-symbol">&gt;</span></div>
327
- <aside class="tsd-sources">
328
- <p>Implementation of Subscribe.off</p>
329
- <ul>
330
- <li>Defined in lib/five/loaders/model/index.ts:150</li>
331
- </ul>
332
- </aside>
333
- <div class="tsd-comment tsd-typography">
334
- <div class="lead">
335
- <p>解除事件
336
- 具体可查看 <a href="five.subscribe.html#off">Subscribe.off</a></p>
337
- </div>
338
- </div>
339
- </section>
340
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
341
- <a name="on" class="tsd-anchor"></a>
342
- <h3>on</h3>
343
- <div class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">:</span> <a href="../interfaces/five.subscribemixintype.on.html" class="tsd-signature-type" data-tsd-kind="Interface">on</a><span class="tsd-signature-symbol">&lt;</span><a href="../modules/five.html#modeleventtype" class="tsd-signature-type" data-tsd-kind="Type alias">ModelEventType</a><span class="tsd-signature-symbol">&gt;</span></div>
344
- <aside class="tsd-sources">
345
- <p>Implementation of Subscribe.on</p>
346
- <ul>
347
- <li>Defined in lib/five/loaders/model/index.ts:138</li>
348
- </ul>
349
- </aside>
350
- <div class="tsd-comment tsd-typography">
351
- <div class="lead">
352
- <p>注册事件
353
- 具体可查看 <a href="five.subscribe.html#on">Subscribe.on</a></p>
354
- </div>
355
- </div>
356
- </section>
357
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
358
- <a name="once" class="tsd-anchor"></a>
359
- <h3>once</h3>
360
- <div class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">:</span> <a href="../interfaces/five.subscribemixintype.once.html" class="tsd-signature-type" data-tsd-kind="Interface">once</a><span class="tsd-signature-symbol">&lt;</span><a href="../modules/five.html#modeleventtype" class="tsd-signature-type" data-tsd-kind="Type alias">ModelEventType</a><span class="tsd-signature-symbol">&gt;</span></div>
361
- <aside class="tsd-sources">
362
- <p>Implementation of Subscribe.once</p>
363
- <ul>
364
- <li>Defined in lib/five/loaders/model/index.ts:144</li>
365
- </ul>
366
- </aside>
367
- <div class="tsd-comment tsd-typography">
368
- <div class="lead">
369
- <p>注册事件(是否只执行一次)
370
- 具体可查看 <a href="five.subscribe.html#once">Subscribe.once</a></p>
371
- </div>
372
- </div>
373
- </section>
374
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
375
- <a name="shownfloor" class="tsd-anchor"></a>
376
- <h3>shown<wbr>Floor</h3>
377
- <div class="tsd-signature tsd-kind-icon">shown<wbr>Floor<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
378
- <aside class="tsd-sources">
379
- <ul>
380
- <li>Defined in lib/five/loaders/model/index.ts:123</li>
381
- </ul>
382
- </aside>
383
- <div class="tsd-comment tsd-typography">
384
- <div class="lead">
385
- <p>当前显示的楼层</p>
386
- </div>
387
- </div>
388
- </section>
389
- </section>
390
- <section class="tsd-panel-group tsd-member-group ">
391
- <h2>Accessors</h2>
392
- <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
393
- <a name="shownfloor-1" class="tsd-anchor"></a>
394
- <h3>shownfloor</h3>
395
- <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
396
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> shownfloor<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
397
- </ul>
398
- <ul class="tsd-descriptions">
399
- <li class="tsd-description">
400
- <aside class="tsd-sources">
401
- <ul>
402
- <li>Defined in lib/five/loaders/model/index.ts:177</li>
403
- </ul>
404
- </aside>
405
- <div class="tsd-comment tsd-typography">
406
- <div class="lead">
407
- <p>当前显示的楼层</p>
408
- </div>
409
- <dl class="tsd-comment-tags">
410
- <dt>deprecated</dt>
411
- <dd><p>请用 shwonFloor 代替</p>
412
- </dd>
413
- </dl>
414
- </div>
415
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
416
- </li>
417
- </ul>
418
- </section>
419
- </section>
420
- <section class="tsd-panel-group tsd-member-group ">
421
- <h2>Methods</h2>
422
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
423
- <a name="buildbvh" class="tsd-anchor"></a>
424
- <h3>buildBVH</h3>
425
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
426
- <li class="tsd-signature tsd-kind-icon">buildBVH<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></li>
427
- </ul>
428
- <ul class="tsd-descriptions">
429
- <li class="tsd-description">
430
- <aside class="tsd-sources">
431
- <ul>
432
- <li>Defined in lib/five/loaders/model/index.ts:371</li>
433
- </ul>
434
- </aside>
435
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4>
436
- </li>
437
- </ul>
438
- </section>
439
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
440
- <a name="dispose" class="tsd-anchor"></a>
441
- <h3>dispose</h3>
442
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
443
- <li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
444
- </ul>
445
- <ul class="tsd-descriptions">
446
- <li class="tsd-description">
447
- <aside class="tsd-sources">
448
- <ul>
449
- <li>Defined in lib/five/loaders/model/index.ts:470</li>
450
- </ul>
451
- </aside>
452
- <div class="tsd-comment tsd-typography">
453
- <div class="lead">
454
- <p>析构函数</p>
455
- </div>
456
- <dl class="tsd-comment-tags">
457
- <dt>description</dt>
458
- <dd><p>一旦析构,则不能使用</p>
459
- </dd>
460
- </dl>
461
- </div>
462
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
463
- </li>
464
- </ul>
465
- </section>
466
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
467
- <a name="disposegeometry" class="tsd-anchor"></a>
468
- <h3>dispose<wbr>Geometry</h3>
469
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
470
- <li class="tsd-signature tsd-kind-icon">dispose<wbr>Geometry<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
471
- </ul>
472
- <ul class="tsd-descriptions">
473
- <li class="tsd-description">
474
- <aside class="tsd-sources">
475
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#disposegeometry">disposeGeometry</a></p>
476
- <ul>
477
- <li>Defined in lib/five/core/pbmGroup.ts:122</li>
478
- </ul>
479
- </aside>
480
- <div class="tsd-comment tsd-typography">
481
- <div class="lead">
482
- <p>析构模型网格</p>
483
- </div>
484
- </div>
485
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
486
- </li>
487
- </ul>
488
- </section>
489
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
490
- <a name="disposematerial" class="tsd-anchor"></a>
491
- <h3>dispose<wbr>Material</h3>
492
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
493
- <li class="tsd-signature tsd-kind-icon">dispose<wbr>Material<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
494
- </ul>
495
- <ul class="tsd-descriptions">
496
- <li class="tsd-description">
497
- <aside class="tsd-sources">
498
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#disposematerial">disposeMaterial</a></p>
499
- <ul>
500
- <li>Defined in lib/five/core/pbmGroup.ts:98</li>
501
- </ul>
502
- </aside>
503
- <div class="tsd-comment tsd-typography">
504
- <div class="lead">
505
- <p>析构材质</p>
506
- </div>
507
- </div>
508
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
509
- </li>
510
- </ul>
511
- </section>
512
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
513
- <a name="getedges" class="tsd-anchor"></a>
514
- <h3>get<wbr>Edges</h3>
515
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
516
- <li class="tsd-signature tsd-kind-icon">get<wbr>Edges<span class="tsd-signature-symbol">(</span>threshold<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Line3</span><span class="tsd-signature-symbol">[]</span></li>
517
- </ul>
518
- <ul class="tsd-descriptions">
519
- <li class="tsd-description">
520
- <aside class="tsd-sources">
521
- <ul>
522
- <li>Defined in lib/five/loaders/model/index.ts:186</li>
523
- </ul>
524
- </aside>
525
- <div class="tsd-comment tsd-typography">
526
- <div class="lead">
527
- <p>获取模型边界线</p>
528
- </div>
529
- </div>
530
- <h4 class="tsd-parameters-title">Parameters</h4>
531
- <ul class="tsd-parameters">
532
- <li>
533
- <h5>threshold: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = ...</span></h5>
534
- <div class="tsd-comment tsd-typography">
535
- <p>面片间夹角阈值</p>
536
- </div>
537
- </li>
538
- </ul>
539
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Line3</span><span class="tsd-signature-symbol">[]</span></h4>
540
- <p>所有模型边界线</p>
541
- </li>
542
- </ul>
543
- </section>
544
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
545
- <a name="getmaterial" class="tsd-anchor"></a>
546
- <h3>get<wbr>Material</h3>
547
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
548
- <li class="tsd-signature tsd-kind-icon">get<wbr>Material<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/five.pbmparameters.html" class="tsd-signature-type" data-tsd-kind="Interface">PBMParameters</a></li>
549
- </ul>
550
- <ul class="tsd-descriptions">
551
- <li class="tsd-description">
552
- <aside class="tsd-sources">
553
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#getmaterial">getMaterial</a></p>
554
- <ul>
555
- <li>Defined in lib/five/core/pbmGroup.ts:43</li>
556
- </ul>
557
- </aside>
558
- <div class="tsd-comment tsd-typography">
559
- <div class="lead">
560
- <p>获取材质参数</p>
561
- </div>
562
- </div>
563
- <h4 class="tsd-returns-title">Returns <a href="../interfaces/five.pbmparameters.html" class="tsd-signature-type" data-tsd-kind="Interface">PBMParameters</a></h4>
564
- </li>
565
- </ul>
566
- </section>
567
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
568
- <a name="gettransparent" class="tsd-anchor"></a>
569
- <h3>get<wbr>Transparent</h3>
570
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
571
- <li class="tsd-signature tsd-kind-icon">get<wbr>Transparent<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
572
- </ul>
573
- <ul class="tsd-descriptions">
574
- <li class="tsd-description">
575
- <aside class="tsd-sources">
576
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#gettransparent">getTransparent</a></p>
577
- <ul>
578
- <li>Defined in lib/five/core/pbmGroup.ts:15</li>
579
- </ul>
580
- </aside>
581
- <div class="tsd-comment tsd-typography">
582
- <div class="lead">
583
- <p>获取是否有透明参数</p>
584
- </div>
585
- </div>
586
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
587
- </li>
588
- </ul>
589
- </section>
590
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
591
- <a name="hasfloors" class="tsd-anchor"></a>
592
- <h3>has<wbr>Floors</h3>
593
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
594
- <li class="tsd-signature tsd-kind-icon">has<wbr>Floors<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
595
- </ul>
596
- <ul class="tsd-descriptions">
597
- <li class="tsd-description">
598
- <aside class="tsd-sources">
599
- <ul>
600
- <li>Defined in lib/five/loaders/model/index.ts:251</li>
601
- </ul>
602
- </aside>
603
- <div class="tsd-comment tsd-typography">
604
- <div class="lead">
605
- <p>获取当前楼层数</p>
606
- </div>
607
- <dl class="tsd-comment-tags">
608
- <dt>deprecated</dt>
609
- <dd><p>请使用 floorLength 参数代替</p>
610
- </dd>
611
- </dl>
612
- </div>
613
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
614
- </li>
615
- </ul>
616
- </section>
617
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private">
618
- <a name="hasfloors_" class="tsd-anchor"></a>
619
- <h3><span class="tsd-flag ts-flagPrivate">Private</span> has<wbr>Floors_</h3>
620
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
621
- <li class="tsd-signature tsd-kind-icon">has<wbr>Floors_<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
622
- </ul>
623
- <ul class="tsd-descriptions">
624
- <li class="tsd-description">
625
- <aside class="tsd-sources">
626
- <ul>
627
- <li>Defined in lib/five/loaders/model/index.ts:255</li>
628
- </ul>
629
- </aside>
630
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
631
- </li>
632
- </ul>
633
- </section>
634
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
635
- <a name="intersectraycaster" class="tsd-anchor"></a>
636
- <h3>intersect<wbr>Raycaster</h3>
637
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
638
- <li class="tsd-signature tsd-kind-icon">intersect<wbr>Raycaster<span class="tsd-signature-symbol">(</span>raycaster<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Raycaster</span>, floors<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/five.intersection.html" class="tsd-signature-type" data-tsd-kind="Interface">Intersection</a><span class="tsd-signature-symbol">[]</span></li>
639
- </ul>
640
- <ul class="tsd-descriptions">
641
- <li class="tsd-description">
642
- <aside class="tsd-sources">
643
- <ul>
644
- <li>Defined in lib/five/loaders/model/index.ts:307</li>
645
- </ul>
646
- </aside>
647
- <div class="tsd-comment tsd-typography">
648
- <div class="lead">
649
- <p>计算模型射线碰撞检测</p>
650
- </div>
651
- </div>
652
- <h4 class="tsd-parameters-title">Parameters</h4>
653
- <ul class="tsd-parameters">
654
- <li>
655
- <h5>raycaster: <span class="tsd-signature-type">Raycaster</span></h5>
656
- <div class="tsd-comment tsd-typography">
657
- <p>THREE 射线对象</p>
658
- </div>
659
- </li>
660
- <li>
661
- <h5><span class="tsd-flag ts-flagOptional">Optional</span> floors: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span></h5>
662
- <div class="tsd-comment tsd-typography">
663
- <p>和某一楼层做碰撞检测, 不传为和所有楼层做碰撞检测</p>
664
- </div>
665
- </li>
666
- </ul>
667
- <h4 class="tsd-returns-title">Returns <a href="../interfaces/five.intersection.html" class="tsd-signature-type" data-tsd-kind="Interface">Intersection</a><span class="tsd-signature-symbol">[]</span></h4>
668
- <p>返回碰撞</p>
669
- </li>
670
- </ul>
671
- </section>
672
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
673
- <a name="load" class="tsd-anchor"></a>
674
- <h3>load</h3>
675
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
676
- <li class="tsd-signature tsd-kind-icon">load<span class="tsd-signature-symbol">(</span>workModel<span class="tsd-signature-symbol">: </span><a href="../modules/five.html#workmodel" class="tsd-signature-type" data-tsd-kind="Type alias">WorkModel</a>, imageOptions<span class="tsd-signature-symbol">?: </span><a href="../interfaces/five.imageoptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ImageOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
677
- </ul>
678
- <ul class="tsd-descriptions">
679
- <li class="tsd-description">
680
- <aside class="tsd-sources">
681
- <ul>
682
- <li>Defined in lib/five/loaders/model/index.ts:417</li>
683
- </ul>
684
- </aside>
685
- <div class="tsd-comment tsd-typography">
686
- <div class="lead">
687
- <p>加载模型</p>
688
- </div>
689
- </div>
690
- <h4 class="tsd-parameters-title">Parameters</h4>
691
- <ul class="tsd-parameters">
692
- <li>
693
- <h5>workModel: <a href="../modules/five.html#workmodel" class="tsd-signature-type" data-tsd-kind="Type alias">WorkModel</a></h5>
694
- <div class="tsd-comment tsd-typography">
695
- <p>work 的 model 内容</p>
696
- </div>
697
- </li>
698
- <li>
699
- <h5>imageOptions: <a href="../interfaces/five.imageoptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ImageOptions</a><span class="tsd-signature-symbol"> = {}</span></h5>
700
- <div class="tsd-comment tsd-typography">
701
- <p>图片参数</p>
702
- </div>
703
- </li>
704
- </ul>
705
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
706
- </li>
707
- </ul>
708
- </section>
709
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
710
- <a name="setmaterial" class="tsd-anchor"></a>
711
- <h3>set<wbr>Material</h3>
712
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
713
- <li class="tsd-signature tsd-kind-icon">set<wbr>Material<span class="tsd-signature-symbol">(</span>parameters<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Partial</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/five.pbmparameters.html" class="tsd-signature-type" data-tsd-kind="Interface">PBMParameters</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
714
- </ul>
715
- <ul class="tsd-descriptions">
716
- <li class="tsd-description">
717
- <aside class="tsd-sources">
718
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#setmaterial">setMaterial</a></p>
719
- <ul>
720
- <li>Defined in lib/five/core/pbmGroup.ts:73</li>
721
- </ul>
722
- </aside>
723
- <div class="tsd-comment tsd-typography">
724
- <div class="lead">
725
- <p>设置材质参数</p>
726
- </div>
727
- </div>
728
- <h4 class="tsd-parameters-title">Parameters</h4>
729
- <ul class="tsd-parameters">
730
- <li>
731
- <h5>parameters: <span class="tsd-signature-type">Partial</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/five.pbmparameters.html" class="tsd-signature-type" data-tsd-kind="Interface">PBMParameters</a><span class="tsd-signature-symbol">&gt;</span></h5>
732
- </li>
733
- </ul>
734
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
735
- </li>
736
- </ul>
737
- </section>
738
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
739
- <a name="settransparent" class="tsd-anchor"></a>
740
- <h3>set<wbr>Transparent</h3>
741
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
742
- <li class="tsd-signature tsd-kind-icon">set<wbr>Transparent<span class="tsd-signature-symbol">(</span>bool<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
743
- </ul>
744
- <ul class="tsd-descriptions">
745
- <li class="tsd-description">
746
- <aside class="tsd-sources">
747
- <p>Inherited from <a href="five.pbmgroup.html">PBMGroup</a>.<a href="five.pbmgroup.html#settransparent">setTransparent</a></p>
748
- <ul>
749
- <li>Defined in lib/five/core/pbmGroup.ts:32</li>
750
- </ul>
751
- </aside>
752
- <div class="tsd-comment tsd-typography">
753
- <div class="lead">
754
- <p>设置透明参数</p>
755
- </div>
756
- </div>
757
- <h4 class="tsd-parameters-title">Parameters</h4>
758
- <ul class="tsd-parameters">
759
- <li>
760
- <h5>bool: <span class="tsd-signature-type">boolean</span></h5>
761
- </li>
762
- </ul>
763
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
764
- </li>
765
- </ul>
766
- </section>
767
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
768
- <a name="show" class="tsd-anchor"></a>
769
- <h3>show</h3>
770
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
771
- <li class="tsd-signature tsd-kind-icon">show<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
772
- <li class="tsd-signature tsd-kind-icon">show<span class="tsd-signature-symbol">(</span>floorIndex<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, hideOpacity<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
773
- </ul>
774
- <ul class="tsd-descriptions">
775
- <li class="tsd-description">
776
- <aside class="tsd-sources">
777
- <ul>
778
- <li>Defined in lib/five/loaders/model/index.ts:273</li>
779
- </ul>
780
- </aside>
781
- <div class="tsd-comment tsd-typography">
782
- <div class="lead">
783
- <p>显示某楼层</p>
784
- </div>
785
- <dl class="tsd-comment-tags">
786
- <dt>example</dt>
787
- <dd><pre><code><span style="color: #001080">model</span><span style="color: #000000">.</span><span style="color: #795E26">show</span><span style="color: #000000">() </span><span style="color: #008000">//显示全部楼层</span>
788
- <span style="color: #001080">model</span><span style="color: #000000">.</span><span style="color: #795E26">show</span><span style="color: #000000">(</span><span style="color: #098658">1</span><span style="color: #000000">) </span><span style="color: #008000">//显示第一楼层</span>
789
- <span style="color: #001080">model</span><span style="color: #000000">.</span><span style="color: #795E26">show</span><span style="color: #000000">(</span><span style="color: #098658">1</span><span style="color: #000000">, </span><span style="color: #098658">0</span><span style="color: #000000">) </span><span style="color: #008000">//显示第一楼层, 并且其他楼层透明度为 0</span>
790
- </code></pre>
791
- </dd>
792
- </dl>
793
- </div>
794
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
795
- </li>
796
- <li class="tsd-description">
797
- <aside class="tsd-sources">
798
- <ul>
799
- <li>Defined in lib/five/loaders/model/index.ts:274</li>
800
- </ul>
801
- </aside>
802
- <h4 class="tsd-parameters-title">Parameters</h4>
803
- <ul class="tsd-parameters">
804
- <li>
805
- <h5>floorIndex: <span class="tsd-signature-type">number</span></h5>
806
- </li>
807
- <li>
808
- <h5><span class="tsd-flag ts-flagOptional">Optional</span> hideOpacity: <span class="tsd-signature-type">number</span></h5>
809
- </li>
810
- </ul>
811
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
812
- </li>
813
- </ul>
814
- </section>
815
- </section>
816
- </div>
817
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
818
- <nav class="tsd-navigation primary">
819
- <ul>
820
- <li class=" ">
821
- <a href="../modules.html">Modules</a>
822
- </li>
823
- <li class="current tsd-kind-module">
824
- <a href="../modules/five.html">five</a>
825
- </li>
826
- <li class=" tsd-kind-module">
827
- <a href="../modules/gltf_loader.html">gltf-<wbr>loader</a>
828
- </li>
829
- <li class=" tsd-kind-module">
830
- <a href="../modules/line.html">line</a>
831
- </li>
832
- <li class=" tsd-kind-module">
833
- <a href="../modules/react.html">react</a>
834
- </li>
835
- <li class=" tsd-kind-module">
836
- <a href="../modules/server.html">server</a>
837
- </li>
838
- <li class=" tsd-kind-module">
839
- <a href="../modules/sticker.html">sticker</a>
840
- </li>
841
- </ul>
842
- </nav>
843
- <nav class="tsd-navigation secondary menu-sticky">
844
- <ul class="before-current">
845
- </ul>
846
- <ul class="current">
847
- <li class="current tsd-kind-class tsd-parent-kind-module">
848
- <a href="five.model.html" class="tsd-kind-icon">Model</a>
849
- <ul>
850
- <li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
851
- <a href="five.model.html#constructor" class="tsd-kind-icon">constructor</a>
852
- </li>
853
- <li class=" tsd-kind-property tsd-parent-kind-class">
854
- <a href="five.model.html#bounding" class="tsd-kind-icon">bounding</a>
855
- </li>
856
- <li class=" tsd-kind-property tsd-parent-kind-class">
857
- <a href="five.model.html#bvhs" class="tsd-kind-icon">bvhs</a>
858
- </li>
859
- <li class=" tsd-kind-property tsd-parent-kind-class">
860
- <a href="five.model.html#emit" class="tsd-kind-icon">emit</a>
861
- </li>
862
- <li class=" tsd-kind-property tsd-parent-kind-class">
863
- <a href="five.model.html#empty" class="tsd-kind-icon">empty</a>
864
- </li>
865
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
866
- <a href="five.model.html#floorindex" class="tsd-kind-icon">floor<wbr>Index</a>
867
- </li>
868
- <li class=" tsd-kind-property tsd-parent-kind-class">
869
- <a href="five.model.html#floorlength" class="tsd-kind-icon">floor<wbr>Length</a>
870
- </li>
871
- <li class=" tsd-kind-property tsd-parent-kind-class">
872
- <a href="five.model.html#haslistener" class="tsd-kind-icon">has<wbr>Listener</a>
873
- </li>
874
- <li class=" tsd-kind-property tsd-parent-kind-class">
875
- <a href="five.model.html#loaded" class="tsd-kind-icon">loaded</a>
876
- </li>
877
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
878
- <a href="five.model.html#needsrender" class="tsd-kind-icon">needs<wbr>Render</a>
879
- </li>
880
- <li class=" tsd-kind-property tsd-parent-kind-class">
881
- <a href="five.model.html#off" class="tsd-kind-icon">off</a>
882
- </li>
883
- <li class=" tsd-kind-property tsd-parent-kind-class">
884
- <a href="five.model.html#on" class="tsd-kind-icon">on</a>
885
- </li>
886
- <li class=" tsd-kind-property tsd-parent-kind-class">
887
- <a href="five.model.html#once" class="tsd-kind-icon">once</a>
888
- </li>
889
- <li class=" tsd-kind-property tsd-parent-kind-class">
890
- <a href="five.model.html#shownfloor" class="tsd-kind-icon">shown<wbr>Floor</a>
891
- </li>
892
- <li class=" tsd-kind-get-signature tsd-parent-kind-class">
893
- <a href="five.model.html#shownfloor-1" class="tsd-kind-icon">shownfloor</a>
894
- </li>
895
- <li class=" tsd-kind-method tsd-parent-kind-class">
896
- <a href="five.model.html#buildbvh" class="tsd-kind-icon">buildBVH</a>
897
- </li>
898
- <li class=" tsd-kind-method tsd-parent-kind-class">
899
- <a href="five.model.html#dispose" class="tsd-kind-icon">dispose</a>
900
- </li>
901
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
902
- <a href="five.model.html#disposegeometry" class="tsd-kind-icon">dispose<wbr>Geometry</a>
903
- </li>
904
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
905
- <a href="five.model.html#disposematerial" class="tsd-kind-icon">dispose<wbr>Material</a>
906
- </li>
907
- <li class=" tsd-kind-method tsd-parent-kind-class">
908
- <a href="five.model.html#getedges" class="tsd-kind-icon">get<wbr>Edges</a>
909
- </li>
910
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
911
- <a href="five.model.html#getmaterial" class="tsd-kind-icon">get<wbr>Material</a>
912
- </li>
913
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
914
- <a href="five.model.html#gettransparent" class="tsd-kind-icon">get<wbr>Transparent</a>
915
- </li>
916
- <li class=" tsd-kind-method tsd-parent-kind-class">
917
- <a href="five.model.html#hasfloors" class="tsd-kind-icon">has<wbr>Floors</a>
918
- </li>
919
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-private">
920
- <a href="five.model.html#hasfloors_" class="tsd-kind-icon">has<wbr>Floors_</a>
921
- </li>
922
- <li class=" tsd-kind-method tsd-parent-kind-class">
923
- <a href="five.model.html#intersectraycaster" class="tsd-kind-icon">intersect<wbr>Raycaster</a>
924
- </li>
925
- <li class=" tsd-kind-method tsd-parent-kind-class">
926
- <a href="five.model.html#load" class="tsd-kind-icon">load</a>
927
- </li>
928
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
929
- <a href="five.model.html#setmaterial" class="tsd-kind-icon">set<wbr>Material</a>
930
- </li>
931
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
932
- <a href="five.model.html#settransparent" class="tsd-kind-icon">set<wbr>Transparent</a>
933
- </li>
934
- <li class=" tsd-kind-method tsd-parent-kind-class">
935
- <a href="five.model.html#show" class="tsd-kind-icon">show</a>
936
- </li>
937
- </ul>
938
- </li>
939
- </ul>
940
- <ul class="after-current">
941
- </ul>
942
- </nav>
943
- </div>
944
- </div>
945
- </div>
946
- <footer>
947
- <div class="container">
948
- <h2>Legend</h2>
949
- <div class="tsd-legend-group">
950
- <ul class="tsd-legend">
951
- <li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li>
952
- <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
953
- <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
954
- <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
955
- <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
956
- <li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
957
- </ul>
958
- <ul class="tsd-legend">
959
- <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
960
- <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
961
- <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
962
- <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
963
- <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
964
- </ul>
965
- <ul class="tsd-legend">
966
- <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
967
- <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
968
- </ul>
969
- <ul class="tsd-legend">
970
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
971
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
972
- </ul>
973
- <ul class="tsd-legend">
974
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
975
- </ul>
976
- </div>
977
- </div>
978
- </footer>
979
- <div class="overlay"></div>
980
- <script src="../assets/js/main.js"></script>
981
- </body>
982
- </html>