list.js 12.2 KB
Newer Older
1 2
var list = {

3 4
	"Manual": {
		"Introduction": [
5 6
			[ "Creating a scene", "manual/introduction/Creating-a-scene" ],
			[ "Matrix transformations", "manual/introduction/Matrix-transformations" ]
7 8 9
		]
	},

10
	"Reference": {
11
		"Constants": [
L
Lewy Blue 已提交
12
			[ "Animation", "api/constants/Animation" ],
M
Mr.doob 已提交
13
			[ "CustomBlendingEquation", "api/constants/CustomBlendingEquations" ],
A
aardgoose 已提交
14
			[ "DrawModes", "api/constants/DrawModes" ],
M
Mr.doob 已提交
15
			[ "Materials", "api/constants/Materials" ],
16
			[ "Textures", "api/constants/Textures" ],
17
			[ "Renderer", "api/constants/Renderer" ]
18
		],
B
Brent Van Minnen 已提交
19

20
		"Cameras": [
21
			[ "Camera", "api/cameras/Camera" ],
22
			[ "CubeCamera", "api/cameras/CubeCamera" ],
23
			[ "OrthographicCamera", "api/cameras/OrthographicCamera" ],
L
Lewy Blue 已提交
24 25
			[ "PerspectiveCamera", "api/cameras/PerspectiveCamera" ],
			[ "StereoCamera", "api/cameras/StereoCamera" ]
26 27 28
		],

		"Core": [
29
			[ "BufferAttribute", "api/core/BufferAttribute" ],
M
Mr.doob 已提交
30
			[ "BufferGeometry", "api/core/BufferGeometry" ],
31
			[ "Clock", "api/core/Clock" ],
32
			[ "EventDispatcher", "api/core/EventDispatcher" ],
33 34
			[ "Face3", "api/core/Face3" ],
			[ "Geometry", "api/core/Geometry" ],
35
			[ "Layers", "api/core/Layers" ],
36
			[ "Object3D", "api/core/Object3D" ],
37 38
			[ "Raycaster", "api/core/Raycaster" ],
			[ "Uniform", "api/core/Uniform"]
39 40
		],

41 42 43 44 45 46 47 48 49
		"Geometries": [
			[ "BoxBufferGeometry", "api/geometries/BoxBufferGeometry" ],
			[ "BoxGeometry", "api/geometries/BoxGeometry" ],
			[ "CircleBufferGeometry", "api/geometries/CircleBufferGeometry" ],
			[ "CircleGeometry", "api/geometries/CircleGeometry" ],
			[ "ConeBufferGeometry", "api/geometries/ConeBufferGeometry" ],
			[ "ConeGeometry", "api/geometries/ConeGeometry" ],
			[ "CylinderBufferGeometry", "api/geometries/CylinderBufferGeometry" ],
			[ "CylinderGeometry", "api/geometries/CylinderGeometry" ],
50
			[ "DodecahedronBufferGeometry", "api/geometries/DodecahedronBufferGeometry" ],
51
			[ "DodecahedronGeometry", "api/geometries/DodecahedronGeometry" ],
52
			[ "EdgesGeometry", "api/geometries/EdgesGeometry" ],
53
			[ "ExtrudeGeometry", "api/geometries/ExtrudeGeometry" ],
54
			[ "IcosahedronBufferGeometry", "api/geometries/IcosahedronBufferGeometry" ],
55 56 57
			[ "IcosahedronGeometry", "api/geometries/IcosahedronGeometry" ],
			[ "LatheBufferGeometry", "api/geometries/LatheBufferGeometry" ],
			[ "LatheGeometry", "api/geometries/LatheGeometry" ],
58
			[ "OctahedronBufferGeometry", "api/geometries/OctahedronBufferGeometry" ],
59
			[ "OctahedronGeometry", "api/geometries/OctahedronGeometry" ],
60
			[ "ParametricBufferGeometry", "api/geometries/ParametricBufferGeometry" ],
61 62 63
			[ "ParametricGeometry", "api/geometries/ParametricGeometry" ],
			[ "PlaneBufferGeometry", "api/geometries/PlaneBufferGeometry" ],
			[ "PlaneGeometry", "api/geometries/PlaneGeometry" ],
64
			[ "PolyhedronBufferGeometry", "api/geometries/PolyhedronBufferGeometry" ],
65 66 67
			[ "PolyhedronGeometry", "api/geometries/PolyhedronGeometry" ],
			[ "RingBufferGeometry", "api/geometries/RingBufferGeometry" ],
			[ "RingGeometry", "api/geometries/RingGeometry" ],
M
Michael Herzog 已提交
68
			[ "ShapeBufferGeometry", "api/geometries/ShapeBufferGeometry" ],
69 70 71
			[ "ShapeGeometry", "api/geometries/ShapeGeometry" ],
			[ "SphereBufferGeometry", "api/geometries/SphereBufferGeometry" ],
			[ "SphereGeometry", "api/geometries/SphereGeometry" ],
72
			[ "TetrahedronBufferGeometry", "api/geometries/TetrahedronBufferGeometry" ],
73 74 75 76 77 78
			[ "TetrahedronGeometry", "api/geometries/TetrahedronGeometry" ],
			[ "TextGeometry", "api/geometries/TextGeometry" ],
			[ "TorusBufferGeometry", "api/geometries/TorusBufferGeometry" ],
			[ "TorusGeometry", "api/geometries/TorusGeometry" ],
			[ "TorusKnotBufferGeometry", "api/geometries/TorusKnotBufferGeometry" ],
			[ "TorusKnotGeometry", "api/geometries/TorusKnotGeometry" ],
M
Michael Herzog 已提交
79
			[ "TubeGeometry", "api/geometries/TubeGeometry" ],
80 81
			[ "TubeBufferGeometry", "api/geometries/TubeBufferGeometry" ],
			[ "WireframeGeometry", "api/geometries/WireframeGeometry" ]
82 83
		],

84
		"Lights": [
85 86
			[ "AmbientLight", "api/lights/AmbientLight" ],
			[ "DirectionalLight", "api/lights/DirectionalLight" ],
87
			[ "DirectionalLightShadow", "api/lights/DirectionalLightShadow" ],
M
Mr.doob 已提交
88
			[ "HemisphereLight", "api/lights/HemisphereLight" ],
89
			[ "Light", "api/lights/Light" ],
90
			[ "LightShadow", "api/lights/LightShadow" ],
91
			[ "PointLight", "api/lights/PointLight" ],
92 93
			[ "SpotLight", "api/lights/SpotLight" ],
			[ "SpotLightShadow", "api/lights/SpotLightShadow" ]
94 95 96 97
		],


		"Loaders": [
R
Reece Lecrivain 已提交
98
			[ "AudioLoader", "api/loaders/AudioLoader" ],
V
Vincent Lark 已提交
99
			[ "BabylonLoader", "api/loaders/BabylonLoader" ],
100
			[ "BufferGeometryLoader", "api/loaders/BufferGeometryLoader" ],
101
			[ "Cache", "api/loaders/Cache" ],
V
Vincent Lark 已提交
102
			[ "ColladaLoader", "api/loaders/ColladaLoader" ],
103
			[ "FileLoader", "api/loaders/FileLoader" ],
R
Rich Tibbett 已提交
104
			[ "GLTFLoader", "api/loaders/GLTFLoader" ],
105 106
			[ "ImageLoader", "api/loaders/ImageLoader" ],
			[ "JSONLoader", "api/loaders/JSONLoader" ],
107
			[ "Loader", "api/loaders/Loader" ],
108
			[ "LoadingManager", "api/loaders/LoadingManager" ],
109
			[ "MaterialLoader", "api/loaders/MaterialLoader" ],
110
			[ "MTLLoader", "api/loaders/MTLLoader" ],
V
Vincent Lark 已提交
111
			[ "OBJLoader", "api/loaders/OBJLoader" ],
112
			[ "ObjectLoader", "api/loaders/ObjectLoader" ],
V
Vincent Lark 已提交
113 114
			[ "PDBLoader", "api/loaders/PDBLoader" ],
			[ "SVGLoader", "api/loaders/SVGLoader" ],
115
			[ "TextureLoader", "api/loaders/TextureLoader" ],
116
			[ "TGALoader", "api/loaders/TGALoader" ]
117 118 119
		],

		"Materials": [
120
			[ "LineBasicMaterial", "api/materials/LineBasicMaterial" ],
M
Mr.doob 已提交
121
			[ "LineDashedMaterial", "api/materials/LineDashedMaterial" ],
122
			[ "Material", "api/materials/Material" ],
123 124
			[ "MeshBasicMaterial", "api/materials/MeshBasicMaterial" ],
			[ "MeshDepthMaterial", "api/materials/MeshDepthMaterial" ],
M
Mugen87 已提交
125
			[ "MultiMaterial", "api/materials/MultiMaterial" ],
126 127 128
			[ "MeshLambertMaterial", "api/materials/MeshLambertMaterial" ],
			[ "MeshNormalMaterial", "api/materials/MeshNormalMaterial" ],
			[ "MeshPhongMaterial", "api/materials/MeshPhongMaterial" ],
129
			[ "MeshPhysicalMaterial", "api/materials/MeshPhysicalMaterial" ],
130
			[ "MeshStandardMaterial", "api/materials/MeshStandardMaterial" ],
M
Mr.doob 已提交
131
			[ "PointsMaterial", "api/materials/PointsMaterial" ],
132
			[ "RawShaderMaterial", "api/materials/RawShaderMaterial" ],
M
Mr.doob 已提交
133
			[ "ShaderMaterial", "api/materials/ShaderMaterial" ],
134
			[ "ShadowMaterial", "api/materials/ShadowMaterial" ],
135
			[ "SpriteMaterial", "api/materials/SpriteMaterial" ]
M
Mr.doob 已提交
136 137 138 139 140 141
		],

		"Math": [
			[ "Box2", "api/math/Box2" ],
			[ "Box3", "api/math/Box3" ],
			[ "Color", "api/math/Color" ],
M
Mr.doob 已提交
142
			[ "Euler", "api/math/Euler" ],
M
Mr.doob 已提交
143
			[ "Frustum", "api/math/Frustum" ],
144
			[ "Interpolant", "api/math/Interpolant" ],
145
			[ "Line3", "api/math/Line3" ],
M
Mr.doob 已提交
146 147 148 149 150 151 152
			[ "Math", "api/math/Math" ],
			[ "Matrix3", "api/math/Matrix3" ],
			[ "Matrix4", "api/math/Matrix4" ],
			[ "Plane", "api/math/Plane" ],
			[ "Quaternion", "api/math/Quaternion" ],
			[ "Ray", "api/math/Ray" ],
			[ "Sphere", "api/math/Sphere" ],
A
aardgoose 已提交
153
			[ "Spherical", "api/math/Spherical" ],
M
Mr.doob 已提交
154 155 156 157 158
			[ "Spline", "api/math/Spline" ],
			[ "Triangle", "api/math/Triangle" ],
			[ "Vector2", "api/math/Vector2" ],
			[ "Vector3", "api/math/Vector3" ],
			[ "Vector4", "api/math/Vector4" ]
159 160
		],

161 162 163 164 165 166 167 168
		"Math / Interpolants": [
			[ "CubicInterpolant", "api/math/interpolants/CubicInterpolant" ],
			[ "DiscreteInterpolant", "api/math/interpolants/DiscreteInterpolant" ],
			[ "LinearInterpolant", "api/math/interpolants/LinearInterpolant" ],
			[ "QuaternionLinearInterpolant", "api/math/interpolants/QuaternionLinearInterpolant" ]
		],


169
		"Objects": [
170
			[ "Bone", "api/objects/Bone" ],
171
			[ "Group", "api/objects/Group" ],
M
Mr.doob 已提交
172
			[ "LensFlare", "api/objects/LensFlare" ],
173
			[ "Line", "api/objects/Line" ],
174
			[ "LineSegments", "api/objects/LineSegments" ],
175
			[ "LOD", "api/objects/LOD" ],
176
			[ "Mesh", "api/objects/Mesh" ],
M
Mr.doob 已提交
177
			[ "Points", "api/objects/Points" ],
G
Greg Tatum 已提交
178
			[ "Skeleton", "api/objects/Skeleton" ],
179
			[ "SkinnedMesh", "api/objects/SkinnedMesh" ],
180
			[ "Sprite", "api/objects/Sprite" ]
181 182 183
		],

		"Renderers": [
184
			[ "CanvasRenderer", "api/renderers/CanvasRenderer" ],
185
			[ "WebGLRenderer", "api/renderers/WebGLRenderer" ],
186
			[ "WebGLRenderTarget", "api/renderers/WebGLRenderTarget" ],
187
			[ "WebGLRenderTargetCube", "api/renderers/WebGLRenderTargetCube" ]
188 189
		],

190 191
		"Renderers / Shaders": [
			[ "ShaderChunk", "api/renderers/shaders/ShaderChunk" ],
192
			[ "ShaderLib", "api/renderers/shaders/ShaderLib" ],
193
			[ "UniformsLib", "api/renderers/shaders/UniformsLib" ],
194
			[ "UniformsUtils", "api/renderers/shaders/UniformsUtils" ]
195 196
		],

197 198
		"Renderers / WebGL": [
			[ "WebGLProgram", "api/renderers/webgl/WebGLProgram" ],
M
Mr.doob 已提交
199 200
			[ "WebGLShader", "api/renderers/webgl/WebGLShader" ],
			[ "WebGLState", "api/renderers/webgl/WebGLState" ]
201 202
		],

M
Mr.doob 已提交
203 204 205 206 207
		"Renderers / WebGL / Plugins": [
			[ "LensFlarePlugin", "api/renderers/webgl/plugins/LensFlarePlugin" ],
			[ "SpritePlugin", "api/renderers/webgl/plugins/SpritePlugin" ]
		],

208
		"Scenes": [
209 210 211
			[ "Fog", "api/scenes/Fog" ],
			[ "FogExp2", "api/scenes/FogExp2" ],
			[ "Scene", "api/scenes/Scene" ]
212 213 214
		],

		"Textures": [
L
Lewy Blue 已提交
215
			[ "CanvasTexture", "api/textures/CanvasTexture" ],
M
Mr.doob 已提交
216
			[ "CompressedTexture", "api/textures/CompressedTexture" ],
M
Mr.doob 已提交
217
			[ "CubeTexture", "api/textures/CubeTexture" ],
218
			[ "DataTexture", "api/textures/DataTexture" ],
219
			[ "DepthTexture", "api/textures/DepthTexture" ],
220 221
			[ "Texture", "api/textures/Texture" ],
			[ "VideoTexture", "api/textures/VideoTexture" ]
222 223
		],

224 225 226 227 228 229
		"Animation": [
			[ "AnimationAction", "api/animation/AnimationAction" ],
			[ "AnimationClip", "api/animation/AnimationClip" ],
			[ "AnimationMixer", "api/animation/AnimationMixer" ]
		],

230
		"Extras": [
231 232 233
			[ "CurveUtils", "api/extras/CurveUtils" ],
			[ "SceneUtils", "api/extras/SceneUtils" ],
			[ "ShapeUtils", "api/extras/ShapeUtils" ]
234 235
		],

236 237 238 239
		"Extras / Collada Animation": [
			[ "Animation", "api/extras/collada-animation/Animation" ],
			[ "AnimationHandler", "api/extras/collada-animation/AnimationHandler" ],
			[ "KeyFrameAnimation", "api/extras/collada-animation/KeyFrameAnimation" ]
240 241 242
		],

		"Extras / Core": [
243 244
			[ "Curve", "api/extras/core/Curve" ],
			[ "CurvePath", "api/extras/core/CurvePath" ],
245
			[ "Font", "api/extras/core/Font" ],
246
			[ "Path", "api/extras/core/Path" ],
Z
zz85 已提交
247
			[ "Shape", "api/extras/core/Shape" ]
248 249
		],

250 251
		"Extras / Curves": [
			[ "ArcCurve", "api/extras/curves/ArcCurve" ],
252
			[ "CatmullRomCurve3", "api/extras/curves/CatmullRomCurve3" ],
253 254 255 256 257 258 259 260 261 262 263 264
			[ "ClosedSplineCurve3", "api/extras/curves/ClosedSplineCurve3" ],
			[ "CubicBezierCurve", "api/extras/curves/CubicBezierCurve" ],
			[ "CubicBezierCurve3", "api/extras/curves/CubicBezierCurve3" ],
			[ "EllipseCurve", "api/extras/curves/EllipseCurve" ],
			[ "LineCurve", "api/extras/curves/LineCurve" ],
			[ "LineCurve3", "api/extras/curves/LineCurve3" ],
			[ "QuadraticBezierCurve", "api/extras/curves/QuadraticBezierCurve" ],
			[ "QuadraticBezierCurve3", "api/extras/curves/QuadraticBezierCurve3" ],
			[ "SplineCurve", "api/extras/curves/SplineCurve" ],
			[ "SplineCurve3", "api/extras/curves/SplineCurve3" ]
		],

265
		"Extras / Helpers": [
M
Mr.doob 已提交
266
			[ "ArrowHelper", "api/extras/helpers/ArrowHelper" ],
267
			[ "AxisHelper", "api/extras/helpers/AxisHelper" ],
G
gero3 已提交
268
			[ "BoundingBoxHelper", "api/extras/helpers/BoundingBoxHelper" ],
269
			[ "BoxHelper", "api/extras/helpers/BoxHelper" ],
M
Mr.doob 已提交
270 271
			[ "CameraHelper", "api/extras/helpers/CameraHelper" ],
			[ "DirectionalLightHelper", "api/extras/helpers/DirectionalLightHelper" ],
272
			[ "FaceNormalsHelper", "api/extras/helpers/FaceNormalsHelper" ],
273
			[ "GridHelper", "api/extras/helpers/GridHelper" ],
M
Mr.doob 已提交
274 275
			[ "HemisphereLightHelper", "api/extras/helpers/HemisphereLightHelper" ],
			[ "PointLightHelper", "api/extras/helpers/PointLightHelper" ],
276
			[ "SkeletonHelper", "api/extras/helpers/SkeletonHelper" ],
277
			[ "SpotLightHelper", "api/extras/helpers/SpotLightHelper" ],
278
			[ "VertexNormalsHelper", "api/extras/helpers/VertexNormalsHelper" ]
279 280 281
		],

		"Extras / Objects": [
M
Mr.doob 已提交
282 283
			[ "ImmediateRenderObject", "api/extras/objects/ImmediateRenderObject" ],
			[ "MorphBlendMesh", "api/extras/objects/MorphBlendMesh" ]
284 285
		],

286
		"Examples" : [
287
			[ "CombinedCamera", "api/examples/cameras/CombinedCamera" ],
288
			[ "LookupTable", "api/examples/Lut" ],
289
			[ "SpriteCanvasMaterial", "api/examples/SpriteCanvasMaterial" ]
290

291
		]
292

293
	}
294 295 296 297 298

};

var pages = {};

299 300 301 302 303 304 305 306 307
for ( var section in list ) {

	pages[ section ] = {};

	for ( var category in list[ section ] ) {

		pages[ section ][ category ] = {};

		for ( var i = 0; i < list[ section ][ category ].length; i ++ ) {
308

309 310
			var page = list[ section ][ category ][ i ];
			pages[ section ][ category ][ page[ 0 ] ] = page[ 1 ];
311

312
		}
313 314 315

	}

316
}