list.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. var list = {
  2. "Manual": {
  3. "Getting Started": [
  4. [ "Creating a scene", "manual/introduction/Creating-a-scene" ],
  5. [ "Detecting WebGL and browser compatibility", "manual/introduction/Detecting-WebGL-and-browser-compatibility" ],
  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. [ "IcosahedronBufferGeometry", "api/geometries/IcosahedronBufferGeometry" ],
  132. [ "IcosahedronGeometry", "api/geometries/IcosahedronGeometry" ],
  133. [ "LatheBufferGeometry", "api/geometries/LatheBufferGeometry" ],
  134. [ "LatheGeometry", "api/geometries/LatheGeometry" ],
  135. [ "OctahedronBufferGeometry", "api/geometries/OctahedronBufferGeometry" ],
  136. [ "OctahedronGeometry", "api/geometries/OctahedronGeometry" ],
  137. [ "ParametricBufferGeometry", "api/geometries/ParametricBufferGeometry" ],
  138. [ "ParametricGeometry", "api/geometries/ParametricGeometry" ],
  139. [ "PlaneBufferGeometry", "api/geometries/PlaneBufferGeometry" ],
  140. [ "PlaneGeometry", "api/geometries/PlaneGeometry" ],
  141. [ "PolyhedronBufferGeometry", "api/geometries/PolyhedronBufferGeometry" ],
  142. [ "PolyhedronGeometry", "api/geometries/PolyhedronGeometry" ],
  143. [ "RingBufferGeometry", "api/geometries/RingBufferGeometry" ],
  144. [ "RingGeometry", "api/geometries/RingGeometry" ],
  145. [ "ShapeBufferGeometry", "api/geometries/ShapeBufferGeometry" ],
  146. [ "ShapeGeometry", "api/geometries/ShapeGeometry" ],
  147. [ "SphereBufferGeometry", "api/geometries/SphereBufferGeometry" ],
  148. [ "SphereGeometry", "api/geometries/SphereGeometry" ],
  149. [ "TetrahedronBufferGeometry", "api/geometries/TetrahedronBufferGeometry" ],
  150. [ "TetrahedronGeometry", "api/geometries/TetrahedronGeometry" ],
  151. [ "TextGeometry", "api/geometries/TextGeometry" ],
  152. [ "TorusBufferGeometry", "api/geometries/TorusBufferGeometry" ],
  153. [ "TorusGeometry", "api/geometries/TorusGeometry" ],
  154. [ "TorusKnotBufferGeometry", "api/geometries/TorusKnotBufferGeometry" ],
  155. [ "TorusKnotGeometry", "api/geometries/TorusKnotGeometry" ],
  156. [ "TubeGeometry", "api/geometries/TubeGeometry" ],
  157. [ "TubeBufferGeometry", "api/geometries/TubeBufferGeometry" ],
  158. [ "WireframeGeometry", "api/geometries/WireframeGeometry" ]
  159. ],
  160. "Helpers": [
  161. [ "ArrowHelper", "api/helpers/ArrowHelper" ],
  162. [ "AxisHelper", "api/helpers/AxisHelper" ],
  163. [ "BoxHelper", "api/helpers/BoxHelper" ],
  164. [ "CameraHelper", "api/helpers/CameraHelper" ],
  165. [ "DirectionalLightHelper", "api/helpers/DirectionalLightHelper" ],
  166. [ "FaceNormalsHelper", "api/helpers/FaceNormalsHelper" ],
  167. [ "GridHelper", "api/helpers/GridHelper" ],
  168. [ "PolarGridHelper", "api/helpers/PolarGridHelper" ],
  169. [ "HemisphereLightHelper", "api/helpers/HemisphereLightHelper" ],
  170. [ "PointLightHelper", "api/helpers/PointLightHelper" ],
  171. [ "RectAreaLightHelper", "api/helpers/RectAreaLightHelper" ],
  172. [ "SkeletonHelper", "api/helpers/SkeletonHelper" ],
  173. [ "SpotLightHelper", "api/helpers/SpotLightHelper" ],
  174. [ "VertexNormalsHelper", "api/helpers/VertexNormalsHelper" ]
  175. ],
  176. "Lights": [
  177. [ "AmbientLight", "api/lights/AmbientLight" ],
  178. [ "DirectionalLight", "api/lights/DirectionalLight" ],
  179. [ "HemisphereLight", "api/lights/HemisphereLight" ],
  180. [ "Light", "api/lights/Light" ],
  181. [ "PointLight", "api/lights/PointLight" ],
  182. [ "RectAreaLight", "api/lights/RectAreaLight" ],
  183. [ "SpotLight", "api/lights/SpotLight" ]
  184. ],
  185. "Lights / Shadows": [
  186. [ "DirectionalLightShadow", "api/lights/shadows/DirectionalLightShadow" ],
  187. [ "LightShadow", "api/lights/shadows/LightShadow" ],
  188. [ "RectAreaLightShadow", "api/lights/shadows/RectAreaLightShadow" ],
  189. [ "SpotLightShadow", "api/lights/shadows/SpotLightShadow" ]
  190. ],
  191. "Loaders": [
  192. [ "AnimationLoader", "api/loaders/AnimationLoader" ],
  193. [ "AudioLoader", "api/loaders/AudioLoader" ],
  194. [ "BufferGeometryLoader", "api/loaders/BufferGeometryLoader" ],
  195. [ "Cache", "api/loaders/Cache" ],
  196. [ "CompressedTextureLoader", "api/loaders/CompressedTextureLoader" ],
  197. [ "CubeTextureLoader", "api/loaders/CubeTextureLoader" ],
  198. [ "DataTextureLoader", "api/loaders/DataTextureLoader" ],
  199. [ "FileLoader", "api/loaders/FileLoader" ],
  200. [ "FontLoader", "api/loaders/FontLoader" ],
  201. [ "ImageLoader", "api/loaders/ImageLoader" ],
  202. [ "JSONLoader", "api/loaders/JSONLoader" ],
  203. [ "Loader", "api/loaders/Loader" ],
  204. [ "MaterialLoader", "api/loaders/MaterialLoader" ],
  205. [ "ObjectLoader", "api/loaders/ObjectLoader" ],
  206. [ "TextureLoader", "api/loaders/TextureLoader" ]
  207. ],
  208. "Loaders / Managers": [
  209. [ "DefaultLoadingManager", "api/loaders/managers/DefaultLoadingManager" ],
  210. [ "LoadingManager", "api/loaders/managers/LoadingManager" ]
  211. ],
  212. "Materials": [
  213. [ "LineBasicMaterial", "api/materials/LineBasicMaterial" ],
  214. [ "LineDashedMaterial", "api/materials/LineDashedMaterial" ],
  215. [ "Material", "api/materials/Material" ],
  216. [ "MeshBasicMaterial", "api/materials/MeshBasicMaterial" ],
  217. [ "MeshDepthMaterial", "api/materials/MeshDepthMaterial" ],
  218. [ "MeshLambertMaterial", "api/materials/MeshLambertMaterial" ],
  219. [ "MeshNormalMaterial", "api/materials/MeshNormalMaterial" ],
  220. [ "MeshPhongMaterial", "api/materials/MeshPhongMaterial" ],
  221. [ "MeshPhysicalMaterial", "api/materials/MeshPhysicalMaterial" ],
  222. [ "MeshStandardMaterial", "api/materials/MeshStandardMaterial" ],
  223. [ "MeshToonMaterial", "api/materials/MeshToonMaterial" ],
  224. [ "MultiMaterial", "api/materials/MultiMaterial" ],
  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. "Math / Convex Hull": [
  260. [ "Face", "api/math/convexhull/Face" ],
  261. [ "HalfEdge", "api/math/convexhull/HalfEdge" ],
  262. [ "QuickHull3", "api/math/convexhull/QuickHull3" ],
  263. [ "Vertex", "api/math/convexhull/Vertex" ],
  264. [ "VertexList", "api/math/convexhull/VertexList" ]
  265. ],
  266. "Objects": [
  267. [ "Bone", "api/objects/Bone" ],
  268. [ "Group", "api/objects/Group" ],
  269. [ "LensFlare", "api/objects/LensFlare" ],
  270. [ "Line", "api/objects/Line" ],
  271. [ "LineLoop", "api/objects/LineLoop" ],
  272. [ "LineSegments", "api/objects/LineSegments" ],
  273. [ "LOD", "api/objects/LOD" ],
  274. [ "Mesh", "api/objects/Mesh" ],
  275. [ "Points", "api/objects/Points" ],
  276. [ "Skeleton", "api/objects/Skeleton" ],
  277. [ "SkinnedMesh", "api/objects/SkinnedMesh" ],
  278. [ "Sprite", "api/objects/Sprite" ]
  279. ],
  280. "Renderers": [
  281. [ "WebGLRenderer", "api/renderers/WebGLRenderer" ],
  282. [ "WebGLRenderTarget", "api/renderers/WebGLRenderTarget" ],
  283. [ "WebGLRenderTargetCube", "api/renderers/WebGLRenderTargetCube" ]
  284. ],
  285. "Renderers / Shaders": [
  286. [ "ShaderChunk", "api/renderers/shaders/ShaderChunk" ],
  287. [ "ShaderLib", "api/renderers/shaders/ShaderLib" ],
  288. [ "UniformsLib", "api/renderers/shaders/UniformsLib" ],
  289. [ "UniformsUtils", "api/renderers/shaders/UniformsUtils" ]
  290. ],
  291. "Scenes": [
  292. [ "Fog", "api/scenes/Fog" ],
  293. [ "FogExp2", "api/scenes/FogExp2" ],
  294. [ "Scene", "api/scenes/Scene" ]
  295. ],
  296. "Textures": [
  297. [ "CanvasTexture", "api/textures/CanvasTexture" ],
  298. [ "CompressedTexture", "api/textures/CompressedTexture" ],
  299. [ "CubeTexture", "api/textures/CubeTexture" ],
  300. [ "DataTexture", "api/textures/DataTexture" ],
  301. [ "DepthTexture", "api/textures/DepthTexture" ],
  302. [ "Texture", "api/textures/Texture" ],
  303. [ "VideoTexture", "api/textures/VideoTexture" ]
  304. ]
  305. },
  306. "Examples": {
  307. "Collada Animation": [
  308. [ "ColladaAnimation", "examples/collada/Animation" ],
  309. [ "AnimationHandler", "examples/collada/AnimationHandler" ],
  310. [ "KeyFrameAnimation", "examples/collada/KeyFrameAnimation" ]
  311. ],
  312. "Loaders": [
  313. [ "BabylonLoader", "examples/loaders/BabylonLoader" ],
  314. [ "ColladaLoader", "examples/loaders/ColladaLoader" ],
  315. [ "GLTFLoader", "examples/loaders/GLTFLoader" ],
  316. [ "MTLLoader", "examples/loaders/MTLLoader" ],
  317. [ "OBJLoader", "examples/loaders/OBJLoader" ],
  318. [ "PCDLoader", "examples/loaders/PCDLoader" ],
  319. [ "PDBLoader", "examples/loaders/PDBLoader" ],
  320. [ "SVGLoader", "examples/loaders/SVGLoader" ],
  321. [ "TGALoader", "examples/loaders/TGALoader" ]
  322. ],
  323. "Plugins": [
  324. [ "CombinedCamera", "examples/cameras/CombinedCamera" ],
  325. [ "LookupTable", "examples/Lut" ],
  326. [ "SpriteCanvasMaterial", "examples/SpriteCanvasMaterial" ]
  327. ],
  328. "Renderers": [
  329. [ "CanvasRenderer", "examples/renderers/CanvasRenderer" ]
  330. ]
  331. },
  332. "Developer Reference": {
  333. "Polyfills": [
  334. [ "Polyfills", "api/Polyfills" ]
  335. ],
  336. "WebGLRenderer": [
  337. [ "WebGLProgram", "api/renderers/webgl/WebGLProgram" ],
  338. [ "WebGLShader", "api/renderers/webgl/WebGLShader" ],
  339. [ "WebGLState", "api/renderers/webgl/WebGLState" ]
  340. ],
  341. "WebGLRenderer / Plugins": [
  342. [ "LensFlarePlugin", "api/renderers/webgl/plugins/LensFlarePlugin" ],
  343. [ "SpritePlugin", "api/renderers/webgl/plugins/SpritePlugin" ]
  344. ]
  345. }
  346. };
  347. var pages = {};
  348. for ( var section in list ) {
  349. pages[ section ] = {};
  350. for ( var category in list[ section ] ) {
  351. pages[ section ][ category ] = {};
  352. for ( var i = 0; i < list[ section ][ category ].length; i ++ ) {
  353. var page = list[ section ][ category ][ i ];
  354. pages[ section ][ category ][ page[ 0 ] ] = page[ 1 ];
  355. }
  356. }
  357. }