list.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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-things-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. "ArrayCamera": "api/cameras/ArrayCamera",
  53. "Camera": "api/cameras/Camera",
  54. "CubeCamera": "api/cameras/CubeCamera",
  55. "OrthographicCamera": "api/cameras/OrthographicCamera",
  56. "PerspectiveCamera": "api/cameras/PerspectiveCamera",
  57. "StereoCamera": "api/cameras/StereoCamera"
  58. },
  59. "Constants": {
  60. "Animation": "api/constants/Animation",
  61. "Core": "api/constants/Core",
  62. "CustomBlendingEquation": "api/constants/CustomBlendingEquations",
  63. "DrawModes": "api/constants/DrawModes",
  64. "Materials": "api/constants/Materials",
  65. "Renderer": "api/constants/Renderer",
  66. "Textures": "api/constants/Textures"
  67. },
  68. "Core": {
  69. "BufferAttribute": "api/core/BufferAttribute",
  70. "BufferGeometry": "api/core/BufferGeometry",
  71. "Clock": "api/core/Clock",
  72. "DirectGeometry": "api/core/DirectGeometry",
  73. "EventDispatcher": "api/core/EventDispatcher",
  74. "Face3": "api/core/Face3",
  75. "Geometry": "api/core/Geometry",
  76. "InstancedBufferAttribute": "api/core/InstancedBufferAttribute",
  77. "GLBufferAttribute": "api/core/GLBufferAttribute",
  78. "InstancedBufferGeometry": "api/core/InstancedBufferGeometry",
  79. "InstancedInterleavedBuffer": "api/core/InstancedInterleavedBuffer",
  80. "InterleavedBuffer": "api/core/InterleavedBuffer",
  81. "InterleavedBufferAttribute": "api/core/InterleavedBufferAttribute",
  82. "Layers": "api/core/Layers",
  83. "Object3D": "api/core/Object3D",
  84. "Raycaster": "api/core/Raycaster",
  85. "Uniform": "api/core/Uniform"
  86. },
  87. "Core / BufferAttributes": {
  88. "BufferAttribute Types": "api/core/bufferAttributeTypes/BufferAttributeTypes"
  89. },
  90. "Deprecated": {
  91. "DeprecatedList": "api/deprecated/DeprecatedList"
  92. },
  93. "Extras": {
  94. "Earcut": "api/extras/Earcut",
  95. "ShapeUtils": "api/extras/ShapeUtils"
  96. },
  97. "Extras / Core": {
  98. "Curve": "api/extras/core/Curve",
  99. "CurvePath": "api/extras/core/CurvePath",
  100. "Font": "api/extras/core/Font",
  101. "Interpolations": "api/extras/core/Interpolations",
  102. "Path": "api/extras/core/Path",
  103. "Shape": "api/extras/core/Shape",
  104. "ShapePath": "api/extras/core/ShapePath"
  105. },
  106. "Extras / Curves": {
  107. "ArcCurve": "api/extras/curves/ArcCurve",
  108. "CatmullRomCurve3": "api/extras/curves/CatmullRomCurve3",
  109. "CubicBezierCurve": "api/extras/curves/CubicBezierCurve",
  110. "CubicBezierCurve3": "api/extras/curves/CubicBezierCurve3",
  111. "EllipseCurve": "api/extras/curves/EllipseCurve",
  112. "LineCurve": "api/extras/curves/LineCurve",
  113. "LineCurve3": "api/extras/curves/LineCurve3",
  114. "QuadraticBezierCurve": "api/extras/curves/QuadraticBezierCurve",
  115. "QuadraticBezierCurve3": "api/extras/curves/QuadraticBezierCurve3",
  116. "SplineCurve": "api/extras/curves/SplineCurve"
  117. },
  118. "Extras / Objects": {
  119. "ImmediateRenderObject": "api/extras/objects/ImmediateRenderObject",
  120. },
  121. "Geometries": {
  122. "BoxBufferGeometry": "api/geometries/BoxBufferGeometry",
  123. "BoxGeometry": "api/geometries/BoxGeometry",
  124. "CircleBufferGeometry": "api/geometries/CircleBufferGeometry",
  125. "CircleGeometry": "api/geometries/CircleGeometry",
  126. "ConeBufferGeometry": "api/geometries/ConeBufferGeometry",
  127. "ConeGeometry": "api/geometries/ConeGeometry",
  128. "CylinderBufferGeometry": "api/geometries/CylinderBufferGeometry",
  129. "CylinderGeometry": "api/geometries/CylinderGeometry",
  130. "DodecahedronBufferGeometry": "api/geometries/DodecahedronBufferGeometry",
  131. "DodecahedronGeometry": "api/geometries/DodecahedronGeometry",
  132. "EdgesGeometry": "api/geometries/EdgesGeometry",
  133. "ExtrudeBufferGeometry": "api/geometries/ExtrudeBufferGeometry",
  134. "ExtrudeGeometry": "api/geometries/ExtrudeGeometry",
  135. "IcosahedronBufferGeometry": "api/geometries/IcosahedronBufferGeometry",
  136. "IcosahedronGeometry": "api/geometries/IcosahedronGeometry",
  137. "LatheBufferGeometry": "api/geometries/LatheBufferGeometry",
  138. "LatheGeometry": "api/geometries/LatheGeometry",
  139. "OctahedronBufferGeometry": "api/geometries/OctahedronBufferGeometry",
  140. "OctahedronGeometry": "api/geometries/OctahedronGeometry",
  141. "ParametricBufferGeometry": "api/geometries/ParametricBufferGeometry",
  142. "ParametricGeometry": "api/geometries/ParametricGeometry",
  143. "PlaneBufferGeometry": "api/geometries/PlaneBufferGeometry",
  144. "PlaneGeometry": "api/geometries/PlaneGeometry",
  145. "PolyhedronBufferGeometry": "api/geometries/PolyhedronBufferGeometry",
  146. "PolyhedronGeometry": "api/geometries/PolyhedronGeometry",
  147. "RingBufferGeometry": "api/geometries/RingBufferGeometry",
  148. "RingGeometry": "api/geometries/RingGeometry",
  149. "ShapeBufferGeometry": "api/geometries/ShapeBufferGeometry",
  150. "ShapeGeometry": "api/geometries/ShapeGeometry",
  151. "SphereBufferGeometry": "api/geometries/SphereBufferGeometry",
  152. "SphereGeometry": "api/geometries/SphereGeometry",
  153. "TetrahedronBufferGeometry": "api/geometries/TetrahedronBufferGeometry",
  154. "TetrahedronGeometry": "api/geometries/TetrahedronGeometry",
  155. "TextBufferGeometry": "api/geometries/TextBufferGeometry",
  156. "TextGeometry": "api/geometries/TextGeometry",
  157. "TorusBufferGeometry": "api/geometries/TorusBufferGeometry",
  158. "TorusGeometry": "api/geometries/TorusGeometry",
  159. "TorusKnotBufferGeometry": "api/geometries/TorusKnotBufferGeometry",
  160. "TorusKnotGeometry": "api/geometries/TorusKnotGeometry",
  161. "TubeBufferGeometry": "api/geometries/TubeBufferGeometry",
  162. "TubeGeometry": "api/geometries/TubeGeometry",
  163. "WireframeGeometry": "api/geometries/WireframeGeometry"
  164. },
  165. "Helpers": {
  166. "ArrowHelper": "api/helpers/ArrowHelper",
  167. "AxesHelper": "api/helpers/AxesHelper",
  168. "BoxHelper": "api/helpers/BoxHelper",
  169. "Box3Helper": "api/helpers/Box3Helper",
  170. "CameraHelper": "api/helpers/CameraHelper",
  171. "DirectionalLightHelper": "api/helpers/DirectionalLightHelper",
  172. "FaceNormalsHelper": "api/helpers/FaceNormalsHelper",
  173. "GridHelper": "api/helpers/GridHelper",
  174. "PolarGridHelper": "api/helpers/PolarGridHelper",
  175. "HemisphereLightHelper": "api/helpers/HemisphereLightHelper",
  176. "PlaneHelper": "api/helpers/PlaneHelper",
  177. "PointLightHelper": "api/helpers/PointLightHelper",
  178. "RectAreaLightHelper": "api/helpers/RectAreaLightHelper",
  179. "SkeletonHelper": "api/helpers/SkeletonHelper",
  180. "SpotLightHelper": "api/helpers/SpotLightHelper",
  181. "VertexNormalsHelper": "api/helpers/VertexNormalsHelper"
  182. },
  183. "Lights": {
  184. "AmbientLight": "api/lights/AmbientLight",
  185. "DirectionalLight": "api/lights/DirectionalLight",
  186. "HemisphereLight": "api/lights/HemisphereLight",
  187. "Light": "api/lights/Light",
  188. "PointLight": "api/lights/PointLight",
  189. "RectAreaLight": "api/lights/RectAreaLight",
  190. "SpotLight": "api/lights/SpotLight"
  191. },
  192. "Lights / Shadows": {
  193. "DirectionalLightShadow": "api/lights/shadows/DirectionalLightShadow",
  194. "LightShadow": "api/lights/shadows/LightShadow",
  195. "SpotLightShadow": "api/lights/shadows/SpotLightShadow"
  196. },
  197. "Loaders": {
  198. "AnimationLoader": "api/loaders/AnimationLoader",
  199. "AudioLoader": "api/loaders/AudioLoader",
  200. "BufferGeometryLoader": "api/loaders/BufferGeometryLoader",
  201. "Cache": "api/loaders/Cache",
  202. "CompressedTextureLoader": "api/loaders/CompressedTextureLoader",
  203. "CubeTextureLoader": "api/loaders/CubeTextureLoader",
  204. "DataTextureLoader": "api/loaders/DataTextureLoader",
  205. "FileLoader": "api/loaders/FileLoader",
  206. "FontLoader": "api/loaders/FontLoader",
  207. "ImageBitmapLoader": "api/loaders/ImageBitmapLoader",
  208. "ImageLoader": "api/loaders/ImageLoader",
  209. "JSONLoader": "api/loaders/JSONLoader",
  210. "Loader": "api/loaders/Loader",
  211. "LoaderUtils": "api/loaders/LoaderUtils",
  212. "MaterialLoader": "api/loaders/MaterialLoader",
  213. "ObjectLoader": "api/loaders/ObjectLoader",
  214. "TextureLoader": "api/loaders/TextureLoader"
  215. },
  216. "Loaders / Managers": {
  217. "DefaultLoadingManager": "api/loaders/managers/DefaultLoadingManager",
  218. "LoadingManager": "api/loaders/managers/LoadingManager"
  219. },
  220. "Materials": {
  221. "LineBasicMaterial": "api/materials/LineBasicMaterial",
  222. "LineDashedMaterial": "api/materials/LineDashedMaterial",
  223. "Material": "api/materials/Material",
  224. "MeshBasicMaterial": "api/materials/MeshBasicMaterial",
  225. "MeshDepthMaterial": "api/materials/MeshDepthMaterial",
  226. "MeshLambertMaterial": "api/materials/MeshLambertMaterial",
  227. "MeshNormalMaterial": "api/materials/MeshNormalMaterial",
  228. "MeshPhongMaterial": "api/materials/MeshPhongMaterial",
  229. "MeshPhysicalMaterial": "api/materials/MeshPhysicalMaterial",
  230. "MeshStandardMaterial": "api/materials/MeshStandardMaterial",
  231. "MeshToonMaterial": "api/materials/MeshToonMaterial",
  232. "PointsMaterial": "api/materials/PointsMaterial",
  233. "RawShaderMaterial": "api/materials/RawShaderMaterial",
  234. "ShaderMaterial": "api/materials/ShaderMaterial",
  235. "ShadowMaterial": "api/materials/ShadowMaterial",
  236. "SpriteMaterial": "api/materials/SpriteMaterial"
  237. },
  238. "Math": {
  239. "Box2": "api/math/Box2",
  240. "Box3": "api/math/Box3",
  241. "Color": "api/math/Color",
  242. "Cylindrical": "api/math/Cylindrical",
  243. "Euler": "api/math/Euler",
  244. "Frustum": "api/math/Frustum",
  245. "Interpolant": "api/math/Interpolant",
  246. "Line3": "api/math/Line3",
  247. "Math": "api/math/Math",
  248. "Matrix3": "api/math/Matrix3",
  249. "Matrix4": "api/math/Matrix4",
  250. "Plane": "api/math/Plane",
  251. "Quaternion": "api/math/Quaternion",
  252. "Ray": "api/math/Ray",
  253. "Sphere": "api/math/Sphere",
  254. "Spherical": "api/math/Spherical",
  255. "Triangle": "api/math/Triangle",
  256. "Vector2": "api/math/Vector2",
  257. "Vector3": "api/math/Vector3",
  258. "Vector4": "api/math/Vector4"
  259. },
  260. "Math / Interpolants": {
  261. "CubicInterpolant": "api/math/interpolants/CubicInterpolant",
  262. "DiscreteInterpolant": "api/math/interpolants/DiscreteInterpolant",
  263. "LinearInterpolant": "api/math/interpolants/LinearInterpolant",
  264. "QuaternionLinearInterpolant": "api/math/interpolants/QuaternionLinearInterpolant"
  265. },
  266. "Objects": {
  267. "Bone": "api/objects/Bone",
  268. "Group": "api/objects/Group",
  269. "Line": "api/objects/Line",
  270. "LineLoop": "api/objects/LineLoop",
  271. "LineSegments": "api/objects/LineSegments",
  272. "LOD": "api/objects/LOD",
  273. "Mesh": "api/objects/Mesh",
  274. "Points": "api/objects/Points",
  275. "Skeleton": "api/objects/Skeleton",
  276. "SkinnedMesh": "api/objects/SkinnedMesh",
  277. "Sprite": "api/objects/Sprite"
  278. },
  279. "Renderers": {
  280. "WebGLRenderer": "api/renderers/WebGLRenderer",
  281. "WebGLRenderTarget": "api/renderers/WebGLRenderTarget",
  282. "WebGLRenderTargetCube": "api/renderers/WebGLRenderTargetCube"
  283. },
  284. "Renderers / Shaders": {
  285. "ShaderChunk": "api/renderers/shaders/ShaderChunk",
  286. "ShaderLib": "api/renderers/shaders/ShaderLib",
  287. "UniformsLib": "api/renderers/shaders/UniformsLib",
  288. "UniformsUtils": "api/renderers/shaders/UniformsUtils"
  289. },
  290. "Scenes": {
  291. "Fog": "api/scenes/Fog",
  292. "FogExp2": "api/scenes/FogExp2",
  293. "Scene": "api/scenes/Scene"
  294. },
  295. "Textures": {
  296. "CanvasTexture": "api/textures/CanvasTexture",
  297. "CompressedTexture": "api/textures/CompressedTexture",
  298. "CubeTexture": "api/textures/CubeTexture",
  299. "DataTexture": "api/textures/DataTexture",
  300. "DepthTexture": "api/textures/DepthTexture",
  301. "Texture": "api/textures/Texture",
  302. "VideoTexture": "api/textures/VideoTexture"
  303. }
  304. },
  305. "Examples": {
  306. "Controls": {
  307. "OrbitControls": "examples/controls/OrbitControls"
  308. },
  309. "Geometries": {
  310. "ConvexBufferGeometry": "examples/geometries/ConvexBufferGeometry",
  311. "ConvexGeometry": "examples/geometries/ConvexGeometry",
  312. "DecalGeometry": "examples/geometries/DecalGeometry"
  313. },
  314. "Loaders": {
  315. "BabylonLoader": "examples/loaders/BabylonLoader",
  316. "GLTFLoader": "examples/loaders/GLTFLoader",
  317. "MTLLoader": "examples/loaders/MTLLoader",
  318. "OBJLoader": "examples/loaders/OBJLoader",
  319. "OBJLoader2": "examples/loaders/OBJLoader2",
  320. "LoaderSupport": "examples/loaders/LoaderSupport",
  321. "PCDLoader": "examples/loaders/PCDLoader",
  322. "PDBLoader": "examples/loaders/PDBLoader",
  323. "SVGLoader": "examples/loaders/SVGLoader",
  324. "TGALoader": "examples/loaders/TGALoader",
  325. "PRWMLoader": "examples/loaders/PRWMLoader"
  326. },
  327. "Objects": {
  328. "Lensflare": "examples/objects/Lensflare",
  329. },
  330. "Exporters": {
  331. "GLTFExporter": "examples/exporters/GLTFExporter"
  332. },
  333. "Plugins": {
  334. "LookupTable": "examples/Lut",
  335. "SpriteCanvasMaterial": "examples/SpriteCanvasMaterial"
  336. },
  337. "QuickHull": {
  338. "Face": "examples/quickhull/Face",
  339. "HalfEdge": "examples/quickhull/HalfEdge",
  340. "QuickHull": "examples/quickhull/QuickHull",
  341. "VertexNode": "examples/quickhull/VertexNode",
  342. "VertexList": "examples/quickhull/VertexList"
  343. },
  344. "Renderers": {
  345. "CanvasRenderer": "examples/renderers/CanvasRenderer",
  346. "CSS2DRenderer": "examples/renderers/CSS2DRenderer",
  347. "CSS3DRenderer": "examples/renderers/CSS3DRenderer",
  348. "SVGRenderer": "examples/renderers/SVGRenderer"
  349. },
  350. "Utils": {
  351. "BufferGeometryUtils": "examples/BufferGeometryUtils",
  352. "SceneUtils": "examples/utils/SceneUtils"
  353. }
  354. },
  355. "Developer Reference": {
  356. "Polyfills": {
  357. "Polyfills": "api/Polyfills"
  358. },
  359. "WebGLRenderer": {
  360. "WebGLProgram": "api/renderers/webgl/WebGLProgram",
  361. "WebGLShader": "api/renderers/webgl/WebGLShader",
  362. "WebGLState": "api/renderers/webgl/WebGLState"
  363. },
  364. "WebGLRenderer / Plugins": {
  365. "SpritePlugin": "api/renderers/webgl/plugins/SpritePlugin"
  366. }
  367. }
  368. };