list.js 15 KB

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