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

3
	"Manual": {
L
Lewy Blue 已提交
4
		"Getting Started": [
5
			[ "Creating a scene", "manual/introduction/Creating-a-scene" ],
L
Lewy Blue 已提交
6
			[ "Detecting WebGL and browser compatibility", "manual/introduction/Detecting-WebGL-and-browser-compatibility" ],
L
Lewy Blue 已提交
7
			[ "How to run things locally", "manual/introduction/How-to-run-thing-locally" ],
L
Lewy Blue 已提交
8 9
			[ "Drawing Lines", "manual/introduction/Drawing-lines" ],
			[ "Creating Text", "manual/introduction/Creating-text" ],
10
			[ "Migration Guide", "manual/introduction/Migration-guide" ],
L
Lewy Blue 已提交
11 12 13 14 15 16
			[ "Code Style Guide", "manual/introduction/Code-style-guide" ],
			[ "FAQ", "manual/introduction/FAQ" ],
			[ "Useful links", "manual/introduction/Useful-links" ]
		],

		"Next Steps": [
J
Jost Schmithals 已提交
17 18 19
			[ "How to update things", "manual/introduction/How-to-update-things" ],
			[ "Matrix transformations", "manual/introduction/Matrix-transformations" ],
            [ "Animation System", "manual/introduction/Animation-system" ]
L
Lewy Blue 已提交
20 21 22 23
		],

		"Build Tools": [
			[ "Testing with NPM", "manual/buildTools/Testing-with-NPM" ]
24 25 26
		]
	},

27
	"Reference": {
28 29 30 31 32 33 34 35 36 37 38 39

		"Animation": [
			[ "AnimationAction", "api/animation/AnimationAction" ],
			[ "AnimationClip", "api/animation/AnimationClip" ],
			[ "AnimationMixer", "api/animation/AnimationMixer" ],
			[ "AnimationObjectGroup", "api/animation/AnimationObjectGroup" ],
			[ "AnimationUtils", "api/animation/AnimationUtils" ],
			[ "KeyframeTrack", "api/animation/KeyframeTrack" ],
			[ "PropertyBinding", "api/animation/PropertyBinding" ],
			[ "PropertyMixer", "api/animation/PropertyMixer" ]
		],

40 41 42 43 44 45 46 47 48
		"Animation / Tracks": [
		  [ "BooleanKeyframeTrack", "api/animation/tracks/BooleanKeyframeTrack" ],
		  [ "ColorKeyframeTrack", "api/animation/tracks/ColorKeyframeTrack" ],
		  [ "NumberKeyframeTrack", "api/animation/tracks/NumberKeyframeTrack" ],
		  [ "QuaternionKeyframeTrack", "api/animation/tracks/QuaternionKeyframeTrack" ],
		  [ "StringKeyframeTrack", "api/animation/tracks/StringKeyframeTrack" ],
		  [ "VectorKeyframeTrack", "api/animation/tracks/VectorKeyframeTrack" ]
		],

49 50 51 52 53 54 55 56
		"Audio": [
			[ "Audio", "api/audio/Audio" ],
			[ "AudioAnalyser", "api/audio/AudioAnalyser" ],
			[ "AudioContext", "api/audio/AudioContext" ],
			[ "AudioListener", "api/audio/AudioListener" ],
			[ "PositionalAudio", "api/audio/PositionalAudio" ]
		],

57 58 59 60 61 62
		"Cameras": [
			[ "Camera", "api/cameras/Camera" ],
			[ "CubeCamera", "api/cameras/CubeCamera" ],
			[ "OrthographicCamera", "api/cameras/OrthographicCamera" ],
			[ "PerspectiveCamera", "api/cameras/PerspectiveCamera" ],
			[ "StereoCamera", "api/cameras/StereoCamera" ]
L
Lewy Blue 已提交
63 64
		],

65
		"Constants": [
L
Lewy Blue 已提交
66
			[ "Animation", "api/constants/Animation" ],
L
Lewy Blue 已提交
67
			[ "Core", "api/constants/Core" ],
M
Mr.doob 已提交
68
			[ "CustomBlendingEquation", "api/constants/CustomBlendingEquations" ],
A
aardgoose 已提交
69
			[ "DrawModes", "api/constants/DrawModes" ],
M
Mr.doob 已提交
70
			[ "Materials", "api/constants/Materials" ],
71 72
			[ "Renderer", "api/constants/Renderer" ],
			[ "Textures", "api/constants/Textures" ]
73 74 75
		],

		"Core": [
76
			[ "BufferAttribute", "api/core/BufferAttribute" ],
M
Mr.doob 已提交
77
			[ "BufferGeometry", "api/core/BufferGeometry" ],
78
			[ "Clock", "api/core/Clock" ],
79
			[ "DirectGeometry", "api/core/DirectGeometry" ],
80
			[ "EventDispatcher", "api/core/EventDispatcher" ],
81 82
			[ "Face3", "api/core/Face3" ],
			[ "Geometry", "api/core/Geometry" ],
83 84 85 86 87
			[ "InstancedBufferAttribute", "api/core/InstancedBufferAttribute" ],
			[ "InstancedBufferGeometry", "api/core/InstancedBufferGeometry" ],
			[ "InstancedInterleavedBuffer", "api/core/InstancedInterleavedBuffer" ],
			[ "InterleavedBuffer", "api/core/InterleavedBuffer" ],
			[ "InterleavedBufferAttribute", "api/core/InterleavedBufferAttribute" ],
88
			[ "Layers", "api/core/Layers" ],
89
			[ "Object3D", "api/core/Object3D" ],
90
			[ "Raycaster", "api/core/Raycaster" ],
L
Lewy Blue 已提交
91
			[ "Uniform", "api/core/Uniform" ]
92 93
		],

94 95 96 97
		"Core / BufferAttributes": [
			[ "BufferAttribute Types", "api/core/bufferAttributeTypes/BufferAttributeTypes" ]
		],

L
Lewy Blue 已提交
98 99 100 101
		"Deprecated": [
			[ "DeprecatedList", "api/deprecated/DeprecatedList" ]
		],

102 103 104 105 106 107 108 109 110 111 112
		"Extras": [
			[ "CurveUtils", "api/extras/CurveUtils" ],
			[ "SceneUtils", "api/extras/SceneUtils" ],
			[ "ShapeUtils", "api/extras/ShapeUtils" ]
		],

		"Extras / Core": [
			[ "Curve", "api/extras/core/Curve" ],
			[ "CurvePath", "api/extras/core/CurvePath" ],
			[ "Font", "api/extras/core/Font" ],
			[ "Path", "api/extras/core/Path" ],
L
Lewy Blue 已提交
113 114
			[ "Shape", "api/extras/core/Shape" ],
			[ "ShapePath", "api/extras/core/ShapePath" ]
115 116 117 118 119 120 121 122 123 124 125 126
		],

		"Extras / Curves": [
			[ "ArcCurve", "api/extras/curves/ArcCurve" ],
			[ "CatmullRomCurve3", "api/extras/curves/CatmullRomCurve3" ],
			[ "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" ],
M
Mugen87 已提交
127
			[ "SplineCurve", "api/extras/curves/SplineCurve" ]
128 129 130 131 132 133 134
		],

		"Extras / Objects": [
			[ "ImmediateRenderObject", "api/extras/objects/ImmediateRenderObject" ],
			[ "MorphBlendMesh", "api/extras/objects/MorphBlendMesh" ]
		],

135 136 137 138 139 140 141 142 143
		"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" ],
144
			[ "DodecahedronBufferGeometry", "api/geometries/DodecahedronBufferGeometry" ],
145
			[ "DodecahedronGeometry", "api/geometries/DodecahedronGeometry" ],
146
			[ "EdgesGeometry", "api/geometries/EdgesGeometry" ],
147
			[ "ExtrudeGeometry", "api/geometries/ExtrudeGeometry" ],
148
			[ "IcosahedronBufferGeometry", "api/geometries/IcosahedronBufferGeometry" ],
149 150 151
			[ "IcosahedronGeometry", "api/geometries/IcosahedronGeometry" ],
			[ "LatheBufferGeometry", "api/geometries/LatheBufferGeometry" ],
			[ "LatheGeometry", "api/geometries/LatheGeometry" ],
152
			[ "OctahedronBufferGeometry", "api/geometries/OctahedronBufferGeometry" ],
153
			[ "OctahedronGeometry", "api/geometries/OctahedronGeometry" ],
154
			[ "ParametricBufferGeometry", "api/geometries/ParametricBufferGeometry" ],
155 156 157
			[ "ParametricGeometry", "api/geometries/ParametricGeometry" ],
			[ "PlaneBufferGeometry", "api/geometries/PlaneBufferGeometry" ],
			[ "PlaneGeometry", "api/geometries/PlaneGeometry" ],
158
			[ "PolyhedronBufferGeometry", "api/geometries/PolyhedronBufferGeometry" ],
159 160 161
			[ "PolyhedronGeometry", "api/geometries/PolyhedronGeometry" ],
			[ "RingBufferGeometry", "api/geometries/RingBufferGeometry" ],
			[ "RingGeometry", "api/geometries/RingGeometry" ],
M
Michael Herzog 已提交
162
			[ "ShapeBufferGeometry", "api/geometries/ShapeBufferGeometry" ],
163 164 165
			[ "ShapeGeometry", "api/geometries/ShapeGeometry" ],
			[ "SphereBufferGeometry", "api/geometries/SphereBufferGeometry" ],
			[ "SphereGeometry", "api/geometries/SphereGeometry" ],
166
			[ "TetrahedronBufferGeometry", "api/geometries/TetrahedronBufferGeometry" ],
167 168 169 170 171 172
			[ "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 已提交
173
			[ "TubeGeometry", "api/geometries/TubeGeometry" ],
174 175
			[ "TubeBufferGeometry", "api/geometries/TubeBufferGeometry" ],
			[ "WireframeGeometry", "api/geometries/WireframeGeometry" ]
176 177
		],

K
Kevan Stannard 已提交
178
		"Helpers": [
K
Kevan Stannard 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
			[ "ArrowHelper", "api/helpers/ArrowHelper" ],
			[ "AxisHelper", "api/helpers/AxisHelper" ],
			[ "BoxHelper", "api/helpers/BoxHelper" ],
			[ "CameraHelper", "api/helpers/CameraHelper" ],
			[ "DirectionalLightHelper", "api/helpers/DirectionalLightHelper" ],
			[ "FaceNormalsHelper", "api/helpers/FaceNormalsHelper" ],
			[ "GridHelper", "api/helpers/GridHelper" ],
			[ "PolarGridHelper", "api/helpers/PolarGridHelper" ],
			[ "HemisphereLightHelper", "api/helpers/HemisphereLightHelper" ],
			[ "PointLightHelper", "api/helpers/PointLightHelper" ],
			[ "RectAreaLightHelper", "api/helpers/RectAreaLightHelper" ],
			[ "SkeletonHelper", "api/helpers/SkeletonHelper" ],
			[ "SpotLightHelper", "api/helpers/SpotLightHelper" ],
			[ "VertexNormalsHelper", "api/helpers/VertexNormalsHelper" ]
		],

195
		"Lights": [
196 197
			[ "AmbientLight", "api/lights/AmbientLight" ],
			[ "DirectionalLight", "api/lights/DirectionalLight" ],
M
Mr.doob 已提交
198
			[ "HemisphereLight", "api/lights/HemisphereLight" ],
199
			[ "Light", "api/lights/Light" ],
200
			[ "PointLight", "api/lights/PointLight" ],
201
			[ "RectAreaLight", "api/lights/RectAreaLight" ],
202
			[ "SpotLight", "api/lights/SpotLight" ]
203 204
		],

205
		"Lights / Shadows": [
206 207
			[ "DirectionalLightShadow", "api/lights/shadows/DirectionalLightShadow" ],
			[ "LightShadow", "api/lights/shadows/LightShadow" ],
208
			[ "RectAreaLightShadow", "api/lights/shadows/RectAreaLightShadow" ],
209
			[ "SpotLightShadow", "api/lights/shadows/SpotLightShadow" ]
210
		],
211 212

		"Loaders": [
213
			[ "AnimationLoader", "api/loaders/AnimationLoader" ],
R
Reece Lecrivain 已提交
214
			[ "AudioLoader", "api/loaders/AudioLoader" ],
215
			[ "BufferGeometryLoader", "api/loaders/BufferGeometryLoader" ],
216
			[ "Cache", "api/loaders/Cache" ],
217 218 219
			[ "CompressedTextureLoader", "api/loaders/CompressedTextureLoader" ],
			[ "CubeTextureLoader", "api/loaders/CubeTextureLoader" ],
			[ "DataTextureLoader", "api/loaders/DataTextureLoader" ],
220
			[ "FileLoader", "api/loaders/FileLoader" ],
221
			[ "FontLoader", "api/loaders/FontLoader" ],
222 223
			[ "ImageLoader", "api/loaders/ImageLoader" ],
			[ "JSONLoader", "api/loaders/JSONLoader" ],
224 225 226
			[ "Loader", "api/loaders/Loader" ],
			[ "MaterialLoader", "api/loaders/MaterialLoader" ],
			[ "ObjectLoader", "api/loaders/ObjectLoader" ],
T
Tristan VALCKE 已提交
227
			[ "TextureLoader", "api/loaders/TextureLoader" ]
228 229
		],

230
		"Loaders / Managers": [
L
Lewy Blue 已提交
231 232
			[ "DefaultLoadingManager", "api/loaders/managers/DefaultLoadingManager" ],
			[ "LoadingManager", "api/loaders/managers/LoadingManager" ]
233 234
		],

235
		"Materials": [
236
			[ "LineBasicMaterial", "api/materials/LineBasicMaterial" ],
M
Mr.doob 已提交
237
			[ "LineDashedMaterial", "api/materials/LineDashedMaterial" ],
238
			[ "Material", "api/materials/Material" ],
239 240 241 242 243
			[ "MeshBasicMaterial", "api/materials/MeshBasicMaterial" ],
			[ "MeshDepthMaterial", "api/materials/MeshDepthMaterial" ],
			[ "MeshLambertMaterial", "api/materials/MeshLambertMaterial" ],
			[ "MeshNormalMaterial", "api/materials/MeshNormalMaterial" ],
			[ "MeshPhongMaterial", "api/materials/MeshPhongMaterial" ],
244
			[ "MeshPhysicalMaterial", "api/materials/MeshPhysicalMaterial" ],
245
			[ "MeshStandardMaterial", "api/materials/MeshStandardMaterial" ],
L
looeee 已提交
246
			[ "MeshToonMaterial", "api/materials/MeshToonMaterial" ],
247
			[ "MultiMaterial", "api/materials/MultiMaterial" ],
M
Mr.doob 已提交
248
			[ "PointsMaterial", "api/materials/PointsMaterial" ],
249
			[ "RawShaderMaterial", "api/materials/RawShaderMaterial" ],
M
Mr.doob 已提交
250
			[ "ShaderMaterial", "api/materials/ShaderMaterial" ],
251
			[ "ShadowMaterial", "api/materials/ShadowMaterial" ],
252
			[ "SpriteMaterial", "api/materials/SpriteMaterial" ]
M
Mr.doob 已提交
253 254 255 256 257 258
		],

		"Math": [
			[ "Box2", "api/math/Box2" ],
			[ "Box3", "api/math/Box3" ],
			[ "Color", "api/math/Color" ],
259
			[ "Cylindrical", "api/math/Cylindrical" ],
M
Mr.doob 已提交
260
			[ "Euler", "api/math/Euler" ],
M
Mr.doob 已提交
261
			[ "Frustum", "api/math/Frustum" ],
262
			[ "Interpolant", "api/math/Interpolant" ],
263
			[ "Line3", "api/math/Line3" ],
M
Mr.doob 已提交
264 265 266 267 268 269 270
			[ "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 已提交
271
			[ "Spherical", "api/math/Spherical" ],
M
Mr.doob 已提交
272 273 274 275
			[ "Triangle", "api/math/Triangle" ],
			[ "Vector2", "api/math/Vector2" ],
			[ "Vector3", "api/math/Vector3" ],
			[ "Vector4", "api/math/Vector4" ]
276 277
		],

278 279 280 281 282 283 284
		"Math / Interpolants": [
			[ "CubicInterpolant", "api/math/interpolants/CubicInterpolant" ],
			[ "DiscreteInterpolant", "api/math/interpolants/DiscreteInterpolant" ],
			[ "LinearInterpolant", "api/math/interpolants/LinearInterpolant" ],
			[ "QuaternionLinearInterpolant", "api/math/interpolants/QuaternionLinearInterpolant" ]
		],

285
		"Objects": [
286
			[ "Bone", "api/objects/Bone" ],
287
			[ "Group", "api/objects/Group" ],
M
Mr.doob 已提交
288
			[ "LensFlare", "api/objects/LensFlare" ],
289
			[ "Line", "api/objects/Line" ],
290
			[ "LineLoop", "api/objects/LineLoop" ],
291
			[ "LineSegments", "api/objects/LineSegments" ],
292
			[ "LOD", "api/objects/LOD" ],
293
			[ "Mesh", "api/objects/Mesh" ],
M
Mr.doob 已提交
294
			[ "Points", "api/objects/Points" ],
G
Greg Tatum 已提交
295
			[ "Skeleton", "api/objects/Skeleton" ],
296
			[ "SkinnedMesh", "api/objects/SkinnedMesh" ],
297
			[ "Sprite", "api/objects/Sprite" ]
298 299 300
		],

		"Renderers": [
301
			[ "WebGLRenderer", "api/renderers/WebGLRenderer" ],
302
			[ "WebGLRenderTarget", "api/renderers/WebGLRenderTarget" ],
303
			[ "WebGLRenderTargetCube", "api/renderers/WebGLRenderTargetCube" ]
304 305
		],

306 307
		"Renderers / Shaders": [
			[ "ShaderChunk", "api/renderers/shaders/ShaderChunk" ],
308
			[ "ShaderLib", "api/renderers/shaders/ShaderLib" ],
309
			[ "UniformsLib", "api/renderers/shaders/UniformsLib" ],
310
			[ "UniformsUtils", "api/renderers/shaders/UniformsUtils" ]
311 312
		],

313
		"Scenes": [
314 315 316
			[ "Fog", "api/scenes/Fog" ],
			[ "FogExp2", "api/scenes/FogExp2" ],
			[ "Scene", "api/scenes/Scene" ]
317 318 319
		],

		"Textures": [
L
Lewy Blue 已提交
320
			[ "CanvasTexture", "api/textures/CanvasTexture" ],
M
Mr.doob 已提交
321
			[ "CompressedTexture", "api/textures/CompressedTexture" ],
M
Mr.doob 已提交
322
			[ "CubeTexture", "api/textures/CubeTexture" ],
323
			[ "DataTexture", "api/textures/DataTexture" ],
324
			[ "DepthTexture", "api/textures/DepthTexture" ],
325 326
			[ "Texture", "api/textures/Texture" ],
			[ "VideoTexture", "api/textures/VideoTexture" ]
327
		]
328

329
	},
330

331
	"Examples": {
332

333 334 335 336
		"Collada Animation": [
			[ "ColladaAnimation", "examples/collada/Animation" ],
			[ "AnimationHandler", "examples/collada/AnimationHandler" ],
			[ "KeyFrameAnimation", "examples/collada/KeyFrameAnimation" ]
337 338
		],

339 340 341 342 343 344 345 346 347 348
		"Loaders": [
			[ "BabylonLoader", "examples/loaders/BabylonLoader" ],
			[ "ColladaLoader", "examples/loaders/ColladaLoader" ],
			[ "GLTFLoader", "examples/loaders/GLTFLoader" ],
			[ "MTLLoader", "examples/loaders/MTLLoader" ],
			[ "OBJLoader", "examples/loaders/OBJLoader" ],
			[ "PCDLoader", "examples/loaders/PCDLoader" ],
			[ "PDBLoader", "examples/loaders/PDBLoader" ],
			[ "SVGLoader", "examples/loaders/SVGLoader" ],
			[ "TGALoader", "examples/loaders/TGALoader" ]
349 350
		],

351 352 353 354
		"Plugins": [
			[ "CombinedCamera", "examples/cameras/CombinedCamera" ],
			[ "LookupTable", "examples/Lut" ],
			[ "SpriteCanvasMaterial", "examples/SpriteCanvasMaterial" ]
355 356
		],

357 358
		"Renderers": [
			[ "CanvasRenderer", "examples/renderers/CanvasRenderer" ]
359
		]
360

361 362 363 364
	},

	"Developer Reference": {
		"Polyfills": [
365
			[ "Polyfills", "api/Polyfills" ]
366 367 368 369 370 371 372 373 374 375 376 377 378
		],

		"WebGLRenderer": [
			[ "WebGLProgram", "api/renderers/webgl/WebGLProgram" ],
			[ "WebGLShader", "api/renderers/webgl/WebGLShader" ],
			[ "WebGLState", "api/renderers/webgl/WebGLState" ]
		],

		"WebGLRenderer / Plugins": [
			[ "LensFlarePlugin", "api/renderers/webgl/plugins/LensFlarePlugin" ],
			[ "SpritePlugin", "api/renderers/webgl/plugins/SpritePlugin" ]
		]

T
Tristan VALCKE 已提交
379
	}
380 381 382 383 384

};

var pages = {};

385 386 387 388 389 390 391 392 393
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 ++ ) {
394

395 396
			var page = list[ section ][ category ][ i ];
			pages[ section ][ category ][ page[ 0 ] ] = page[ 1 ];
397

398
		}
399 400 401

	}

402
}