list.js 14 KB

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