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 17 18
			[ "Code Style Guide", "manual/introduction/Code-style-guide" ],
			[ "FAQ", "manual/introduction/FAQ" ],
			[ "Useful links", "manual/introduction/Useful-links" ]
		],

		"Next Steps": [
				[ "How to update things", "manual/introduction/How-to-update-things" ],
			[ "Matrix transformations", "manual/introduction/Matrix-transformations" ]
L
Lewy Blue 已提交
19 20 21 22
		],

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

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

		"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" ]
		],

39 40 41 42 43 44 45 46 47
		"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" ]
		],

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

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

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

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

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

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

101 102 103 104 105 106 107 108 109 110 111
		"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 已提交
112 113
			[ "Shape", "api/extras/core/Shape" ],
			[ "ShapePath", "api/extras/core/ShapePath" ]
114 115 116 117 118 119 120 121 122 123 124 125
		],

		"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 已提交
126
			[ "SplineCurve", "api/extras/curves/SplineCurve" ]
127 128 129 130 131 132 133 134 135 136
		],

		"Extras / Helpers": [
			[ "ArrowHelper", "api/extras/helpers/ArrowHelper" ],
			[ "AxisHelper", "api/extras/helpers/AxisHelper" ],
			[ "BoxHelper", "api/extras/helpers/BoxHelper" ],
			[ "CameraHelper", "api/extras/helpers/CameraHelper" ],
			[ "DirectionalLightHelper", "api/extras/helpers/DirectionalLightHelper" ],
			[ "FaceNormalsHelper", "api/extras/helpers/FaceNormalsHelper" ],
			[ "GridHelper", "api/extras/helpers/GridHelper" ],
137
			[ "PolarGridHelper", "api/extras/helpers/PolarGridHelper"],
138 139
			[ "HemisphereLightHelper", "api/extras/helpers/HemisphereLightHelper" ],
			[ "PointLightHelper", "api/extras/helpers/PointLightHelper" ],
L
looeee 已提交
140
			[ "RectAreaLightHelper", "api/extras/helpers/RectAreaLightHelper" ],
141 142 143 144 145 146 147 148 149 150
			[ "SkeletonHelper", "api/extras/helpers/SkeletonHelper" ],
			[ "SpotLightHelper", "api/extras/helpers/SpotLightHelper" ],
			[ "VertexNormalsHelper", "api/extras/helpers/VertexNormalsHelper" ]
		],

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

151 152 153 154 155 156 157 158 159
		"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" ],
160
			[ "DodecahedronBufferGeometry", "api/geometries/DodecahedronBufferGeometry" ],
161
			[ "DodecahedronGeometry", "api/geometries/DodecahedronGeometry" ],
162
			[ "EdgesGeometry", "api/geometries/EdgesGeometry" ],
163
			[ "ExtrudeGeometry", "api/geometries/ExtrudeGeometry" ],
164
			[ "IcosahedronBufferGeometry", "api/geometries/IcosahedronBufferGeometry" ],
165 166 167
			[ "IcosahedronGeometry", "api/geometries/IcosahedronGeometry" ],
			[ "LatheBufferGeometry", "api/geometries/LatheBufferGeometry" ],
			[ "LatheGeometry", "api/geometries/LatheGeometry" ],
168
			[ "OctahedronBufferGeometry", "api/geometries/OctahedronBufferGeometry" ],
169
			[ "OctahedronGeometry", "api/geometries/OctahedronGeometry" ],
170
			[ "ParametricBufferGeometry", "api/geometries/ParametricBufferGeometry" ],
171 172 173
			[ "ParametricGeometry", "api/geometries/ParametricGeometry" ],
			[ "PlaneBufferGeometry", "api/geometries/PlaneBufferGeometry" ],
			[ "PlaneGeometry", "api/geometries/PlaneGeometry" ],
174
			[ "PolyhedronBufferGeometry", "api/geometries/PolyhedronBufferGeometry" ],
175 176 177
			[ "PolyhedronGeometry", "api/geometries/PolyhedronGeometry" ],
			[ "RingBufferGeometry", "api/geometries/RingBufferGeometry" ],
			[ "RingGeometry", "api/geometries/RingGeometry" ],
M
Michael Herzog 已提交
178
			[ "ShapeBufferGeometry", "api/geometries/ShapeBufferGeometry" ],
179 180 181
			[ "ShapeGeometry", "api/geometries/ShapeGeometry" ],
			[ "SphereBufferGeometry", "api/geometries/SphereBufferGeometry" ],
			[ "SphereGeometry", "api/geometries/SphereGeometry" ],
182
			[ "TetrahedronBufferGeometry", "api/geometries/TetrahedronBufferGeometry" ],
183 184 185 186 187 188
			[ "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 已提交
189
			[ "TubeGeometry", "api/geometries/TubeGeometry" ],
190 191
			[ "TubeBufferGeometry", "api/geometries/TubeBufferGeometry" ],
			[ "WireframeGeometry", "api/geometries/WireframeGeometry" ]
192 193
		],

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

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

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

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

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

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

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

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

		"Renderers": [
299
			[ "WebGLRenderer", "api/renderers/WebGLRenderer" ],
300
			[ "WebGLRenderTarget", "api/renderers/WebGLRenderTarget" ],
301
			[ "WebGLRenderTargetCube", "api/renderers/WebGLRenderTargetCube" ]
302 303
		],

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

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

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

327
	},
328

329
	"Examples": {
330

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

337 338 339 340 341 342 343 344 345 346
		"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" ]
347 348
		],

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

355 356
		"Renderers": [
			[ "CanvasRenderer", "examples/renderers/CanvasRenderer" ]
357
		]
358

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
	},

	"Developer Reference": {
		"Polyfills": [
			[ "Polyfills", "api/polyfills" ]
		],

		"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 已提交
377
	}
378 379 380 381 382

};

var pages = {};

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

393 394
			var page = list[ section ][ category ][ i ];
			pages[ section ][ category ][ page[ 0 ] ] = page[ 1 ];
395

396
		}
397 398 399

	}

400
}