list.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. var list = {
  2. "Manual": {
  3. "Getting Started": {
  4. "Creating a scene": "manual/introduction/Creating-a-scene",
  5. "Import via modules": "manual/introduction/Import-via-modules",
  6. "Browser support": "manual/introduction/Browser-support",
  7. "WebGL compatibility check": "manual/introduction/WebGL-compatibility-check",
  8. "How to run things locally": "manual/introduction/How-to-run-thing-locally",
  9. "Drawing Lines": "manual/introduction/Drawing-lines",
  10. "Creating Text": "manual/introduction/Creating-text",
  11. "Migration Guide": "manual/introduction/Migration-guide",
  12. "Code Style Guide": "manual/introduction/Code-style-guide",
  13. "FAQ": "manual/introduction/FAQ",
  14. "Useful links": "manual/introduction/Useful-links"
  15. },
  16. "Next Steps": {
  17. "How to update things": "manual/introduction/How-to-update-things",
  18. "Matrix transformations": "manual/introduction/Matrix-transformations",
  19. "Animation System": "manual/introduction/Animation-system"
  20. },
  21. "Build Tools": {
  22. "Testing with NPM": "manual/buildTools/Testing-with-NPM"
  23. }
  24. },
  25. "Reference": {
  26. "Animation": {
  27. "AnimationAction": "api/animation/AnimationAction",
  28. "AnimationClip": "api/animation/AnimationClip",
  29. "AnimationMixer": "api/animation/AnimationMixer",
  30. "AnimationObjectGroup": "api/animation/AnimationObjectGroup",
  31. "AnimationUtils": "api/animation/AnimationUtils",
  32. "KeyframeTrack": "api/animation/KeyframeTrack",
  33. "PropertyBinding": "api/animation/PropertyBinding",
  34. "PropertyMixer": "api/animation/PropertyMixer"
  35. },
  36. "Animation / Tracks": {
  37. "BooleanKeyframeTrack": "api/animation/tracks/BooleanKeyframeTrack",
  38. "ColorKeyframeTrack": "api/animation/tracks/ColorKeyframeTrack",
  39. "NumberKeyframeTrack": "api/animation/tracks/NumberKeyframeTrack",
  40. "QuaternionKeyframeTrack": "api/animation/tracks/QuaternionKeyframeTrack",
  41. "StringKeyframeTrack": "api/animation/tracks/StringKeyframeTrack",
  42. "VectorKeyframeTrack": "api/animation/tracks/VectorKeyframeTrack"
  43. },
  44. "Audio": {
  45. "Audio": "api/audio/Audio",
  46. "AudioAnalyser": "api/audio/AudioAnalyser",
  47. "AudioContext": "api/audio/AudioContext",
  48. "AudioListener": "api/audio/AudioListener",
  49. "PositionalAudio": "api/audio/PositionalAudio"
  50. },
  51. "Cameras": {
  52. "Camera": "api/cameras/Camera",
  53. "CubeCamera": "api/cameras/CubeCamera",
  54. "OrthographicCamera": "api/cameras/OrthographicCamera",
  55. "PerspectiveCamera": "api/cameras/PerspectiveCamera",
  56. "StereoCamera": "api/cameras/StereoCamera"
  57. },
  58. "Constants": {
  59. "Animation": "api/constants/Animation",
  60. "Core": "api/constants/Core",
  61. "CustomBlendingEquation": "api/constants/CustomBlendingEquations",
  62. "DrawModes": "api/constants/DrawModes",
  63. "Materials": "api/constants/Materials",
  64. "Renderer": "api/constants/Renderer",
  65. "Textures": "api/constants/Textures"
  66. },
  67. "Core": {
  68. "BufferAttribute": "api/core/BufferAttribute",
  69. "BufferGeometry": "api/core/BufferGeometry",
  70. "Clock": "api/core/Clock",
  71. "DirectGeometry": "api/core/DirectGeometry",
  72. "EventDispatcher": "api/core/EventDispatcher",
  73. "Face3": "api/core/Face3",
  74. "Geometry": "api/core/Geometry",
  75. "InstancedBufferAttribute": "api/core/InstancedBufferAttribute",
  76. "InstancedBufferGeometry": "api/core/InstancedBufferGeometry",
  77. "InstancedInterleavedBuffer": "api/core/InstancedInterleavedBuffer",
  78. "InterleavedBuffer": "api/core/InterleavedBuffer",
  79. "InterleavedBufferAttribute": "api/core/InterleavedBufferAttribute",
  80. "Layers": "api/core/Layers",
  81. "Object3D": "api/core/Object3D",
  82. "Raycaster": "api/core/Raycaster",
  83. "Uniform": "api/core/Uniform"
  84. },
  85. "Core / BufferAttributes": {
  86. "BufferAttribute Types": "api/core/bufferAttributeTypes/BufferAttributeTypes"
  87. },
  88. "Deprecated": {
  89. "DeprecatedList": "api/deprecated/DeprecatedList"
  90. },
  91. "Extras": {
  92. "Earcut": "api/extras/Earcut",
  93. "SceneUtils": "api/extras/SceneUtils",
  94. "ShapeUtils": "api/extras/ShapeUtils"
  95. },
  96. "Extras / Core": {
  97. "Curve": "api/extras/core/Curve",
  98. "CurvePath": "api/extras/core/CurvePath",
  99. "Font": "api/extras/core/Font",
  100. "Interpolations": "api/extras/core/Interpolations",
  101. "Path": "api/extras/core/Path",
  102. "Shape": "api/extras/core/Shape",
  103. "ShapePath": "api/extras/core/ShapePath"
  104. },
  105. "Extras / Curves": {
  106. "ArcCurve": "api/extras/curves/ArcCurve",
  107. "CatmullRomCurve3": "api/extras/curves/CatmullRomCurve3",
  108. "CubicBezierCurve": "api/extras/curves/CubicBezierCurve",
  109. "CubicBezierCurve3": "api/extras/curves/CubicBezierCurve3",
  110. "EllipseCurve": "api/extras/curves/EllipseCurve",
  111. "LineCurve": "api/extras/curves/LineCurve",
  112. "LineCurve3": "api/extras/curves/LineCurve3",
  113. "QuadraticBezierCurve": "api/extras/curves/QuadraticBezierCurve",
  114. "QuadraticBezierCurve3": "api/extras/curves/QuadraticBezierCurve3",
  115. "SplineCurve": "api/extras/curves/SplineCurve"
  116. },
  117. "Extras / Objects": {
  118. "ImmediateRenderObject": "api/extras/objects/ImmediateRenderObject",
  119. },
  120. "Geometries": {
  121. "BoxBufferGeometry": "api/geometries/BoxBufferGeometry",
  122. "BoxGeometry": "api/geometries/BoxGeometry",
  123. "CircleBufferGeometry": "api/geometries/CircleBufferGeometry",
  124. "CircleGeometry": "api/geometries/CircleGeometry",
  125. "ConeBufferGeometry": "api/geometries/ConeBufferGeometry",
  126. "ConeGeometry": "api/geometries/ConeGeometry",
  127. "CylinderBufferGeometry": "api/geometries/CylinderBufferGeometry",
  128. "CylinderGeometry": "api/geometries/CylinderGeometry",
  129. "DodecahedronBufferGeometry": "api/geometries/DodecahedronBufferGeometry",
  130. "DodecahedronGeometry": "api/geometries/DodecahedronGeometry",
  131. "EdgesGeometry": "api/geometries/EdgesGeometry",
  132. "ExtrudeGeometry": "api/geometries/ExtrudeGeometry",
  133. "ExtrudeBufferGeometry": "api/geometries/ExtrudeBufferGeometry",
  134. "IcosahedronBufferGeometry": "api/geometries/IcosahedronBufferGeometry",
  135. "IcosahedronGeometry": "api/geometries/IcosahedronGeometry",
  136. "LatheBufferGeometry": "api/geometries/LatheBufferGeometry",
  137. "LatheGeometry": "api/geometries/LatheGeometry",
  138. "OctahedronBufferGeometry": "api/geometries/OctahedronBufferGeometry",
  139. "OctahedronGeometry": "api/geometries/OctahedronGeometry",
  140. "ParametricBufferGeometry": "api/geometries/ParametricBufferGeometry",
  141. "ParametricGeometry": "api/geometries/ParametricGeometry",
  142. "PlaneBufferGeometry": "api/geometries/PlaneBufferGeometry",
  143. "PlaneGeometry": "api/geometries/PlaneGeometry",
  144. "PolyhedronBufferGeometry": "api/geometries/PolyhedronBufferGeometry",
  145. "PolyhedronGeometry": "api/geometries/PolyhedronGeometry",
  146. "RingBufferGeometry": "api/geometries/RingBufferGeometry",
  147. "RingGeometry": "api/geometries/RingGeometry",
  148. "ShapeBufferGeometry": "api/geometries/ShapeBufferGeometry",
  149. "ShapeGeometry": "api/geometries/ShapeGeometry",
  150. "SphereBufferGeometry": "api/geometries/SphereBufferGeometry",
  151. "SphereGeometry": "api/geometries/SphereGeometry",
  152. "TetrahedronBufferGeometry": "api/geometries/TetrahedronBufferGeometry",
  153. "TetrahedronGeometry": "api/geometries/TetrahedronGeometry",
  154. "TextBufferGeometry": "api/geometries/TextBufferGeometry",
  155. "TextGeometry": "api/geometries/TextGeometry",
  156. "TorusBufferGeometry": "api/geometries/TorusBufferGeometry",
  157. "TorusGeometry": "api/geometries/TorusGeometry",
  158. "TorusKnotBufferGeometry": "api/geometries/TorusKnotBufferGeometry",
  159. "TorusKnotGeometry": "api/geometries/TorusKnotGeometry",
  160. "TubeGeometry": "api/geometries/TubeGeometry",
  161. "TubeBufferGeometry": "api/geometries/TubeBufferGeometry",
  162. "WireframeGeometry": "api/geometries/WireframeGeometry"
  163. },
  164. "Helpers": {
  165. "ArrowHelper": "api/helpers/ArrowHelper",
  166. "AxesHelper": "api/helpers/AxesHelper",
  167. "BoxHelper": "api/helpers/BoxHelper",
  168. "Box3Helper": "api/helpers/Box3Helper",
  169. "CameraHelper": "api/helpers/CameraHelper",
  170. "DirectionalLightHelper": "api/helpers/DirectionalLightHelper",
  171. "FaceNormalsHelper": "api/helpers/FaceNormalsHelper",
  172. "GridHelper": "api/helpers/GridHelper",
  173. "PolarGridHelper": "api/helpers/PolarGridHelper",
  174. "HemisphereLightHelper": "api/helpers/HemisphereLightHelper",
  175. "PlaneHelper": "api/helpers/PlaneHelper",
  176. "PointLightHelper": "api/helpers/PointLightHelper",
  177. "RectAreaLightHelper": "api/helpers/RectAreaLightHelper",
  178. "SkeletonHelper": "api/helpers/SkeletonHelper",
  179. "SpotLightHelper": "api/helpers/SpotLightHelper",
  180. "VertexNormalsHelper": "api/helpers/VertexNormalsHelper"
  181. },
  182. "Lights": {
  183. "AmbientLight": "api/lights/AmbientLight",
  184. "DirectionalLight": "api/lights/DirectionalLight",
  185. "HemisphereLight": "api/lights/HemisphereLight",
  186. "Light": "api/lights/Light",
  187. "PointLight": "api/lights/PointLight",
  188. "RectAreaLight": "api/lights/RectAreaLight",
  189. "SpotLight": "api/lights/SpotLight"
  190. },
  191. "Lights / Shadows": {
  192. "DirectionalLightShadow": "api/lights/shadows/DirectionalLightShadow",
  193. "LightShadow": "api/lights/shadows/LightShadow",
  194. "SpotLightShadow": "api/lights/shadows/SpotLightShadow"
  195. },
  196. "Loaders": {
  197. "AnimationLoader": "api/loaders/AnimationLoader",
  198. "AudioLoader": "api/loaders/AudioLoader",
  199. "BufferGeometryLoader": "api/loaders/BufferGeometryLoader",
  200. "Cache": "api/loaders/Cache",
  201. "CompressedTextureLoader": "api/loaders/CompressedTextureLoader",
  202. "CubeTextureLoader": "api/loaders/CubeTextureLoader",
  203. "DataTextureLoader": "api/loaders/DataTextureLoader",
  204. "FileLoader": "api/loaders/FileLoader",
  205. "FontLoader": "api/loaders/FontLoader",
  206. "ImageBitmapLoader": "api/loaders/ImageBitmapLoader",
  207. "ImageLoader": "api/loaders/ImageLoader",
  208. "JSONLoader": "api/loaders/JSONLoader",
  209. "Loader": "api/loaders/Loader",
  210. "MaterialLoader": "api/loaders/MaterialLoader",
  211. "ObjectLoader": "api/loaders/ObjectLoader",
  212. "TextureLoader": "api/loaders/TextureLoader"
  213. },
  214. "Loaders / Managers": {
  215. "DefaultLoadingManager": "api/loaders/managers/DefaultLoadingManager",
  216. "LoadingManager": "api/loaders/managers/LoadingManager"
  217. },
  218. "Materials": {
  219. "LineBasicMaterial": "api/materials/LineBasicMaterial",
  220. "LineDashedMaterial": "api/materials/LineDashedMaterial",
  221. "Material": "api/materials/Material",
  222. "MeshBasicMaterial": "api/materials/MeshBasicMaterial",
  223. "MeshDepthMaterial": "api/materials/MeshDepthMaterial",
  224. "MeshLambertMaterial": "api/materials/MeshLambertMaterial",
  225. "MeshNormalMaterial": "api/materials/MeshNormalMaterial",
  226. "MeshPhongMaterial": "api/materials/MeshPhongMaterial",
  227. "MeshPhysicalMaterial": "api/materials/MeshPhysicalMaterial",
  228. "MeshStandardMaterial": "api/materials/MeshStandardMaterial",
  229. "MeshToonMaterial": "api/materials/MeshToonMaterial",
  230. "PointsMaterial": "api/materials/PointsMaterial",
  231. "RawShaderMaterial": "api/materials/RawShaderMaterial",
  232. "ShaderMaterial": "api/materials/ShaderMaterial",
  233. "ShadowMaterial": "api/materials/ShadowMaterial",
  234. "SpriteMaterial": "api/materials/SpriteMaterial"
  235. },
  236. "Math": {
  237. "Box2": "api/math/Box2",
  238. "Box3": "api/math/Box3",
  239. "Color": "api/math/Color",
  240. "Cylindrical": "api/math/Cylindrical",
  241. "Euler": "api/math/Euler",
  242. "Frustum": "api/math/Frustum",
  243. "Interpolant": "api/math/Interpolant",
  244. "Line3": "api/math/Line3",
  245. "Math": "api/math/Math",
  246. "Matrix3": "api/math/Matrix3",
  247. "Matrix4": "api/math/Matrix4",
  248. "Plane": "api/math/Plane",
  249. "Quaternion": "api/math/Quaternion",
  250. "Ray": "api/math/Ray",
  251. "Sphere": "api/math/Sphere",
  252. "Spherical": "api/math/Spherical",
  253. "Triangle": "api/math/Triangle",
  254. "Vector2": "api/math/Vector2",
  255. "Vector3": "api/math/Vector3",
  256. "Vector4": "api/math/Vector4"
  257. },
  258. "Math / Interpolants": {
  259. "CubicInterpolant": "api/math/interpolants/CubicInterpolant",
  260. "DiscreteInterpolant": "api/math/interpolants/DiscreteInterpolant",
  261. "LinearInterpolant": "api/math/interpolants/LinearInterpolant",
  262. "QuaternionLinearInterpolant": "api/math/interpolants/QuaternionLinearInterpolant"
  263. },
  264. "Objects": {
  265. "Bone": "api/objects/Bone",
  266. "Group": "api/objects/Group",
  267. "LensFlare": "api/objects/LensFlare",
  268. "Line": "api/objects/Line",
  269. "LineLoop": "api/objects/LineLoop",
  270. "LineSegments": "api/objects/LineSegments",
  271. "LOD": "api/objects/LOD",
  272. "Mesh": "api/objects/Mesh",
  273. "Points": "api/objects/Points",
  274. "Skeleton": "api/objects/Skeleton",
  275. "SkinnedMesh": "api/objects/SkinnedMesh",
  276. "Sprite": "api/objects/Sprite"
  277. },
  278. "Renderers": {
  279. "WebGLRenderer": "api/renderers/WebGLRenderer",
  280. "WebGLRenderTarget": "api/renderers/WebGLRenderTarget",
  281. "WebGLRenderTargetCube": "api/renderers/WebGLRenderTargetCube"
  282. },
  283. "Renderers / Shaders": {
  284. "ShaderChunk": "api/renderers/shaders/ShaderChunk",
  285. "ShaderLib": "api/renderers/shaders/ShaderLib",
  286. "UniformsLib": "api/renderers/shaders/UniformsLib",
  287. "UniformsUtils": "api/renderers/shaders/UniformsUtils"
  288. },
  289. "Scenes": {
  290. "Fog": "api/scenes/Fog",
  291. "FogExp2": "api/scenes/FogExp2",
  292. "Scene": "api/scenes/Scene"
  293. },
  294. "Textures": {
  295. "CanvasTexture": "api/textures/CanvasTexture",
  296. "CompressedTexture": "api/textures/CompressedTexture",
  297. "CubeTexture": "api/textures/CubeTexture",
  298. "DataTexture": "api/textures/DataTexture",
  299. "DepthTexture": "api/textures/DepthTexture",
  300. "Texture": "api/textures/Texture",
  301. "VideoTexture": "api/textures/VideoTexture"
  302. }
  303. },
  304. "Examples": {
  305. "Controls": {
  306. "OrbitControls": "examples/controls/OrbitControls"
  307. },
  308. "Geometries": {
  309. "ConvexBufferGeometry": "examples/geometries/ConvexBufferGeometry",
  310. "ConvexGeometry": "examples/geometries/ConvexGeometry",
  311. "DecalGeometry": "examples/geometries/DecalGeometry"
  312. },
  313. "Loaders": {
  314. "BabylonLoader": "examples/loaders/BabylonLoader",
  315. "GLTFLoader": "examples/loaders/GLTFLoader",
  316. "MTLLoader": "examples/loaders/MTLLoader",
  317. "OBJLoader": "examples/loaders/OBJLoader",
  318. "OBJLoader2": "examples/loaders/OBJLoader2",
  319. "LoaderSupport": "examples/loaders/LoaderSupport",
  320. "PCDLoader": "examples/loaders/PCDLoader",
  321. "PDBLoader": "examples/loaders/PDBLoader",
  322. "SVGLoader": "examples/loaders/SVGLoader",
  323. "TGALoader": "examples/loaders/TGALoader",
  324. "PRWMLoader": "examples/loaders/PRWMLoader"
  325. },
  326. "Exporters": {
  327. "GLTFExporter": "examples/exporters/GLTFExporter"
  328. },
  329. "Plugins": {
  330. "LookupTable": "examples/Lut",
  331. "SpriteCanvasMaterial": "examples/SpriteCanvasMaterial"
  332. },
  333. "QuickHull": {
  334. "Face": "examples/quickhull/Face",
  335. "HalfEdge": "examples/quickhull/HalfEdge",
  336. "QuickHull": "examples/quickhull/QuickHull",
  337. "VertexNode": "examples/quickhull/VertexNode",
  338. "VertexList": "examples/quickhull/VertexList"
  339. },
  340. "Renderers": {
  341. "CanvasRenderer": "examples/renderers/CanvasRenderer"
  342. }
  343. },
  344. "Developer Reference": {
  345. "Polyfills": {
  346. "Polyfills": "api/Polyfills"
  347. },
  348. "WebGLRenderer": {
  349. "WebGLProgram": "api/renderers/webgl/WebGLProgram",
  350. "WebGLShader": "api/renderers/webgl/WebGLShader",
  351. "WebGLState": "api/renderers/webgl/WebGLState"
  352. },
  353. "WebGLRenderer / Plugins": {
  354. "LensFlarePlugin": "api/renderers/webgl/plugins/LensFlarePlugin",
  355. "SpritePlugin": "api/renderers/webgl/plugins/SpritePlugin"
  356. }
  357. }
  358. };