list.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. var list = {
  2. "Manual": {
  3. "Introduction": [
  4. [ "Creating a scene", "manual/introduction/Creating-a-scene" ],
  5. [ "Matrix transformations", "manual/introduction/Matrix-transformations" ]
  6. ]
  7. },
  8. "Reference": {
  9. "Constants": [
  10. [ "Animation", "api/constants/Animation" ],
  11. [ "CustomBlendingEquation", "api/constants/CustomBlendingEquations" ],
  12. [ "DrawModes", "api/constants/DrawModes" ],
  13. [ "Materials", "api/constants/Materials" ],
  14. [ "Textures", "api/constants/Textures" ],
  15. [ "Renderer", "api/constants/Renderer" ]
  16. ],
  17. "Cameras": [
  18. [ "Camera", "api/cameras/Camera" ],
  19. [ "CubeCamera", "api/cameras/CubeCamera" ],
  20. [ "OrthographicCamera", "api/cameras/OrthographicCamera" ],
  21. [ "PerspectiveCamera", "api/cameras/PerspectiveCamera" ],
  22. [ "StereoCamera", "api/cameras/StereoCamera" ]
  23. ],
  24. "Core": [
  25. [ "BufferAttribute", "api/core/BufferAttribute" ],
  26. [ "BufferGeometry", "api/core/BufferGeometry" ],
  27. [ "Clock", "api/core/Clock" ],
  28. [ "EventDispatcher", "api/core/EventDispatcher" ],
  29. [ "Face3", "api/core/Face3" ],
  30. [ "Geometry", "api/core/Geometry" ],
  31. [ "Layers", "api/core/Layers" ],
  32. [ "Object3D", "api/core/Object3D" ],
  33. [ "Raycaster", "api/core/Raycaster" ],
  34. [ "Uniform", "api/core/Uniform"]
  35. ],
  36. "Geometries": [
  37. [ "BoxBufferGeometry", "api/geometries/BoxBufferGeometry" ],
  38. [ "BoxGeometry", "api/geometries/BoxGeometry" ],
  39. [ "CircleBufferGeometry", "api/geometries/CircleBufferGeometry" ],
  40. [ "CircleGeometry", "api/geometries/CircleGeometry" ],
  41. [ "ConeBufferGeometry", "api/geometries/ConeBufferGeometry" ],
  42. [ "ConeGeometry", "api/geometries/ConeGeometry" ],
  43. [ "CylinderBufferGeometry", "api/geometries/CylinderBufferGeometry" ],
  44. [ "CylinderGeometry", "api/geometries/CylinderGeometry" ],
  45. [ "DodecahedronBufferGeometry", "api/geometries/DodecahedronBufferGeometry" ],
  46. [ "DodecahedronGeometry", "api/geometries/DodecahedronGeometry" ],
  47. [ "EdgesGeometry", "api/geometries/EdgesGeometry" ],
  48. [ "ExtrudeGeometry", "api/geometries/ExtrudeGeometry" ],
  49. [ "IcosahedronBufferGeometry", "api/geometries/IcosahedronBufferGeometry" ],
  50. [ "IcosahedronGeometry", "api/geometries/IcosahedronGeometry" ],
  51. [ "LatheBufferGeometry", "api/geometries/LatheBufferGeometry" ],
  52. [ "LatheGeometry", "api/geometries/LatheGeometry" ],
  53. [ "OctahedronBufferGeometry", "api/geometries/OctahedronBufferGeometry" ],
  54. [ "OctahedronGeometry", "api/geometries/OctahedronGeometry" ],
  55. [ "ParametricBufferGeometry", "api/geometries/ParametricBufferGeometry" ],
  56. [ "ParametricGeometry", "api/geometries/ParametricGeometry" ],
  57. [ "PlaneBufferGeometry", "api/geometries/PlaneBufferGeometry" ],
  58. [ "PlaneGeometry", "api/geometries/PlaneGeometry" ],
  59. [ "PolyhedronBufferGeometry", "api/geometries/PolyhedronBufferGeometry" ],
  60. [ "PolyhedronGeometry", "api/geometries/PolyhedronGeometry" ],
  61. [ "RingBufferGeometry", "api/geometries/RingBufferGeometry" ],
  62. [ "RingGeometry", "api/geometries/RingGeometry" ],
  63. [ "ShapeBufferGeometry", "api/geometries/ShapeBufferGeometry" ],
  64. [ "ShapeGeometry", "api/geometries/ShapeGeometry" ],
  65. [ "SphereBufferGeometry", "api/geometries/SphereBufferGeometry" ],
  66. [ "SphereGeometry", "api/geometries/SphereGeometry" ],
  67. [ "TetrahedronBufferGeometry", "api/geometries/TetrahedronBufferGeometry" ],
  68. [ "TetrahedronGeometry", "api/geometries/TetrahedronGeometry" ],
  69. [ "TextGeometry", "api/geometries/TextGeometry" ],
  70. [ "TorusBufferGeometry", "api/geometries/TorusBufferGeometry" ],
  71. [ "TorusGeometry", "api/geometries/TorusGeometry" ],
  72. [ "TorusKnotBufferGeometry", "api/geometries/TorusKnotBufferGeometry" ],
  73. [ "TorusKnotGeometry", "api/geometries/TorusKnotGeometry" ],
  74. [ "TubeGeometry", "api/geometries/TubeGeometry" ],
  75. [ "TubeBufferGeometry", "api/geometries/TubeBufferGeometry" ],
  76. [ "WireframeGeometry", "api/geometries/WireframeGeometry" ]
  77. ],
  78. "Lights": [
  79. [ "AmbientLight", "api/lights/AmbientLight" ],
  80. [ "DirectionalLight", "api/lights/DirectionalLight" ],
  81. [ "DirectionalLightShadow", "api/lights/DirectionalLightShadow" ],
  82. [ "HemisphereLight", "api/lights/HemisphereLight" ],
  83. [ "Light", "api/lights/Light" ],
  84. [ "LightShadow", "api/lights/LightShadow" ],
  85. [ "PointLight", "api/lights/PointLight" ],
  86. [ "SpotLight", "api/lights/SpotLight" ],
  87. [ "SpotLightShadow", "api/lights/SpotLightShadow" ]
  88. ],
  89. "Loaders": [
  90. [ "AudioLoader", "api/loaders/AudioLoader" ],
  91. [ "BabylonLoader", "api/loaders/BabylonLoader" ],
  92. [ "BufferGeometryLoader", "api/loaders/BufferGeometryLoader" ],
  93. [ "Cache", "api/loaders/Cache" ],
  94. [ "ColladaLoader", "api/loaders/ColladaLoader" ],
  95. [ "FileLoader", "api/loaders/FileLoader" ],
  96. [ "GLTFLoader", "api/loaders/GLTFLoader" ],
  97. [ "ImageLoader", "api/loaders/ImageLoader" ],
  98. [ "JSONLoader", "api/loaders/JSONLoader" ],
  99. [ "Loader", "api/loaders/Loader" ],
  100. [ "LoadingManager", "api/loaders/LoadingManager" ],
  101. [ "MaterialLoader", "api/loaders/MaterialLoader" ],
  102. [ "MTLLoader", "api/loaders/MTLLoader" ],
  103. [ "OBJLoader", "api/loaders/OBJLoader" ],
  104. [ "ObjectLoader", "api/loaders/ObjectLoader" ],
  105. [ "PDBLoader", "api/loaders/PDBLoader" ],
  106. [ "SVGLoader", "api/loaders/SVGLoader" ],
  107. [ "TextureLoader", "api/loaders/TextureLoader" ],
  108. [ "TGALoader", "api/loaders/TGALoader" ]
  109. ],
  110. "Materials": [
  111. [ "LineBasicMaterial", "api/materials/LineBasicMaterial" ],
  112. [ "LineDashedMaterial", "api/materials/LineDashedMaterial" ],
  113. [ "Material", "api/materials/Material" ],
  114. [ "MeshBasicMaterial", "api/materials/MeshBasicMaterial" ],
  115. [ "MeshDepthMaterial", "api/materials/MeshDepthMaterial" ],
  116. [ "MultiMaterial", "api/materials/MultiMaterial" ],
  117. [ "MeshLambertMaterial", "api/materials/MeshLambertMaterial" ],
  118. [ "MeshNormalMaterial", "api/materials/MeshNormalMaterial" ],
  119. [ "MeshPhongMaterial", "api/materials/MeshPhongMaterial" ],
  120. [ "MeshPhysicalMaterial", "api/materials/MeshPhysicalMaterial" ],
  121. [ "MeshStandardMaterial", "api/materials/MeshStandardMaterial" ],
  122. [ "PointsMaterial", "api/materials/PointsMaterial" ],
  123. [ "RawShaderMaterial", "api/materials/RawShaderMaterial" ],
  124. [ "ShaderMaterial", "api/materials/ShaderMaterial" ],
  125. [ "ShadowMaterial", "api/materials/ShadowMaterial" ],
  126. [ "SpriteMaterial", "api/materials/SpriteMaterial" ]
  127. ],
  128. "Math": [
  129. [ "Box2", "api/math/Box2" ],
  130. [ "Box3", "api/math/Box3" ],
  131. [ "Color", "api/math/Color" ],
  132. [ "Euler", "api/math/Euler" ],
  133. [ "Frustum", "api/math/Frustum" ],
  134. [ "Interpolant", "api/math/Interpolant" ],
  135. [ "Line3", "api/math/Line3" ],
  136. [ "Math", "api/math/Math" ],
  137. [ "Matrix3", "api/math/Matrix3" ],
  138. [ "Matrix4", "api/math/Matrix4" ],
  139. [ "Plane", "api/math/Plane" ],
  140. [ "Quaternion", "api/math/Quaternion" ],
  141. [ "Ray", "api/math/Ray" ],
  142. [ "Sphere", "api/math/Sphere" ],
  143. [ "Spherical", "api/math/Spherical" ],
  144. [ "Spline", "api/math/Spline" ],
  145. [ "Triangle", "api/math/Triangle" ],
  146. [ "Vector2", "api/math/Vector2" ],
  147. [ "Vector3", "api/math/Vector3" ],
  148. [ "Vector4", "api/math/Vector4" ]
  149. ],
  150. "Math / Interpolants": [
  151. [ "CubicInterpolant", "api/math/interpolants/CubicInterpolant" ],
  152. [ "DiscreteInterpolant", "api/math/interpolants/DiscreteInterpolant" ],
  153. [ "LinearInterpolant", "api/math/interpolants/LinearInterpolant" ],
  154. [ "QuaternionLinearInterpolant", "api/math/interpolants/QuaternionLinearInterpolant" ]
  155. ],
  156. "Objects": [
  157. [ "Bone", "api/objects/Bone" ],
  158. [ "Group", "api/objects/Group" ],
  159. [ "LensFlare", "api/objects/LensFlare" ],
  160. [ "Line", "api/objects/Line" ],
  161. [ "LineSegments", "api/objects/LineSegments" ],
  162. [ "LOD", "api/objects/LOD" ],
  163. [ "Mesh", "api/objects/Mesh" ],
  164. [ "Points", "api/objects/Points" ],
  165. [ "Skeleton", "api/objects/Skeleton" ],
  166. [ "SkinnedMesh", "api/objects/SkinnedMesh" ],
  167. [ "Sprite", "api/objects/Sprite" ]
  168. ],
  169. "Renderers": [
  170. [ "CanvasRenderer", "api/renderers/CanvasRenderer" ],
  171. [ "WebGLRenderer", "api/renderers/WebGLRenderer" ],
  172. [ "WebGLRenderTarget", "api/renderers/WebGLRenderTarget" ],
  173. [ "WebGLRenderTargetCube", "api/renderers/WebGLRenderTargetCube" ]
  174. ],
  175. "Renderers / Shaders": [
  176. [ "ShaderChunk", "api/renderers/shaders/ShaderChunk" ],
  177. [ "ShaderLib", "api/renderers/shaders/ShaderLib" ],
  178. [ "UniformsLib", "api/renderers/shaders/UniformsLib" ],
  179. [ "UniformsUtils", "api/renderers/shaders/UniformsUtils" ]
  180. ],
  181. "Renderers / WebGL": [
  182. [ "WebGLProgram", "api/renderers/webgl/WebGLProgram" ],
  183. [ "WebGLShader", "api/renderers/webgl/WebGLShader" ],
  184. [ "WebGLState", "api/renderers/webgl/WebGLState" ]
  185. ],
  186. "Renderers / WebGL / Plugins": [
  187. [ "LensFlarePlugin", "api/renderers/webgl/plugins/LensFlarePlugin" ],
  188. [ "SpritePlugin", "api/renderers/webgl/plugins/SpritePlugin" ]
  189. ],
  190. "Scenes": [
  191. [ "Fog", "api/scenes/Fog" ],
  192. [ "FogExp2", "api/scenes/FogExp2" ],
  193. [ "Scene", "api/scenes/Scene" ]
  194. ],
  195. "Textures": [
  196. [ "CanvasTexture", "api/textures/CanvasTexture" ],
  197. [ "CompressedTexture", "api/textures/CompressedTexture" ],
  198. [ "CubeTexture", "api/textures/CubeTexture" ],
  199. [ "DataTexture", "api/textures/DataTexture" ],
  200. [ "DepthTexture", "api/textures/DepthTexture" ],
  201. [ "Texture", "api/textures/Texture" ],
  202. [ "VideoTexture", "api/textures/VideoTexture" ]
  203. ],
  204. "Animation": [
  205. [ "AnimationAction", "api/animation/AnimationAction" ],
  206. [ "AnimationClip", "api/animation/AnimationClip" ],
  207. [ "AnimationMixer", "api/animation/AnimationMixer" ]
  208. ],
  209. "Extras": [
  210. [ "CurveUtils", "api/extras/CurveUtils" ],
  211. [ "SceneUtils", "api/extras/SceneUtils" ],
  212. [ "ShapeUtils", "api/extras/ShapeUtils" ]
  213. ],
  214. "Extras / Collada Animation": [
  215. [ "Animation", "api/extras/collada-animation/Animation" ],
  216. [ "AnimationHandler", "api/extras/collada-animation/AnimationHandler" ],
  217. [ "KeyFrameAnimation", "api/extras/collada-animation/KeyFrameAnimation" ]
  218. ],
  219. "Extras / Core": [
  220. [ "Curve", "api/extras/core/Curve" ],
  221. [ "CurvePath", "api/extras/core/CurvePath" ],
  222. [ "Font", "api/extras/core/Font" ],
  223. [ "Path", "api/extras/core/Path" ],
  224. [ "Shape", "api/extras/core/Shape" ]
  225. ],
  226. "Extras / Curves": [
  227. [ "ArcCurve", "api/extras/curves/ArcCurve" ],
  228. [ "CatmullRomCurve3", "api/extras/curves/CatmullRomCurve3" ],
  229. [ "ClosedSplineCurve3", "api/extras/curves/ClosedSplineCurve3" ],
  230. [ "CubicBezierCurve", "api/extras/curves/CubicBezierCurve" ],
  231. [ "CubicBezierCurve3", "api/extras/curves/CubicBezierCurve3" ],
  232. [ "EllipseCurve", "api/extras/curves/EllipseCurve" ],
  233. [ "LineCurve", "api/extras/curves/LineCurve" ],
  234. [ "LineCurve3", "api/extras/curves/LineCurve3" ],
  235. [ "QuadraticBezierCurve", "api/extras/curves/QuadraticBezierCurve" ],
  236. [ "QuadraticBezierCurve3", "api/extras/curves/QuadraticBezierCurve3" ],
  237. [ "SplineCurve", "api/extras/curves/SplineCurve" ],
  238. [ "SplineCurve3", "api/extras/curves/SplineCurve3" ]
  239. ],
  240. "Extras / Helpers": [
  241. [ "ArrowHelper", "api/extras/helpers/ArrowHelper" ],
  242. [ "AxisHelper", "api/extras/helpers/AxisHelper" ],
  243. [ "BoundingBoxHelper", "api/extras/helpers/BoundingBoxHelper" ],
  244. [ "BoxHelper", "api/extras/helpers/BoxHelper" ],
  245. [ "CameraHelper", "api/extras/helpers/CameraHelper" ],
  246. [ "DirectionalLightHelper", "api/extras/helpers/DirectionalLightHelper" ],
  247. [ "FaceNormalsHelper", "api/extras/helpers/FaceNormalsHelper" ],
  248. [ "GridHelper", "api/extras/helpers/GridHelper" ],
  249. [ "HemisphereLightHelper", "api/extras/helpers/HemisphereLightHelper" ],
  250. [ "PointLightHelper", "api/extras/helpers/PointLightHelper" ],
  251. [ "SkeletonHelper", "api/extras/helpers/SkeletonHelper" ],
  252. [ "SpotLightHelper", "api/extras/helpers/SpotLightHelper" ],
  253. [ "VertexNormalsHelper", "api/extras/helpers/VertexNormalsHelper" ]
  254. ],
  255. "Extras / Objects": [
  256. [ "ImmediateRenderObject", "api/extras/objects/ImmediateRenderObject" ],
  257. [ "MorphBlendMesh", "api/extras/objects/MorphBlendMesh" ]
  258. ],
  259. "Examples" : [
  260. [ "CombinedCamera", "api/examples/cameras/CombinedCamera" ],
  261. [ "LookupTable", "api/examples/Lut" ],
  262. [ "SpriteCanvasMaterial", "api/examples/SpriteCanvasMaterial" ]
  263. ]
  264. }
  265. };
  266. var pages = {};
  267. for ( var section in list ) {
  268. pages[ section ] = {};
  269. for ( var category in list[ section ] ) {
  270. pages[ section ][ category ] = {};
  271. for ( var i = 0; i < list[ section ][ category ].length; i ++ ) {
  272. var page = list[ section ][ category ][ i ];
  273. pages[ section ][ category ][ page[ 0 ] ] = page[ 1 ];
  274. }
  275. }
  276. }