list.js 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. var list = {
  2. "en": {
  3. "Manual": {
  4. "Getting Started": {
  5. "Creating a scene": "manual/en/introduction/Creating-a-scene",
  6. "Import via modules": "manual/en/introduction/Import-via-modules",
  7. "Browser support": "manual/en/introduction/Browser-support",
  8. "WebGL compatibility check": "manual/en/introduction/WebGL-compatibility-check",
  9. "How to run things locally": "manual/en/introduction/How-to-run-things-locally",
  10. "Typescript setup": "manual/en/introduction/Typescript-setup",
  11. "How to use WebGL 2": "manual/en/introduction/How-to-use-WebGL2",
  12. "Drawing lines": "manual/en/introduction/Drawing-lines",
  13. "Creating text": "manual/en/introduction/Creating-text",
  14. "Loading 3D models": "manual/en/introduction/Loading-3D-models",
  15. "FAQ": "manual/en/introduction/FAQ",
  16. "Useful links": "manual/en/introduction/Useful-links"
  17. },
  18. "Next Steps": {
  19. "How to update things": "manual/en/introduction/How-to-update-things",
  20. "How to dispose of objects": "manual/en/introduction/How-to-dispose-of-objects",
  21. "How to create VR content": "manual/en/introduction/How-to-create-VR-content",
  22. "How to use post-processing": "manual/en/introduction/How-to-use-post-processing",
  23. "Matrix transformations": "manual/en/introduction/Matrix-transformations",
  24. "Animation system": "manual/en/introduction/Animation-system"
  25. },
  26. "Build Tools": {
  27. "Testing with NPM": "manual/en/buildTools/Testing-with-NPM"
  28. }
  29. },
  30. "Reference": {
  31. "Animation": {
  32. "AnimationAction": "api/en/animation/AnimationAction",
  33. "AnimationClip": "api/en/animation/AnimationClip",
  34. "AnimationMixer": "api/en/animation/AnimationMixer",
  35. "AnimationObjectGroup": "api/en/animation/AnimationObjectGroup",
  36. "AnimationUtils": "api/en/animation/AnimationUtils",
  37. "KeyframeTrack": "api/en/animation/KeyframeTrack",
  38. "PropertyBinding": "api/en/animation/PropertyBinding",
  39. "PropertyMixer": "api/en/animation/PropertyMixer"
  40. },
  41. "Animation / Tracks": {
  42. "BooleanKeyframeTrack": "api/en/animation/tracks/BooleanKeyframeTrack",
  43. "ColorKeyframeTrack": "api/en/animation/tracks/ColorKeyframeTrack",
  44. "NumberKeyframeTrack": "api/en/animation/tracks/NumberKeyframeTrack",
  45. "QuaternionKeyframeTrack": "api/en/animation/tracks/QuaternionKeyframeTrack",
  46. "StringKeyframeTrack": "api/en/animation/tracks/StringKeyframeTrack",
  47. "VectorKeyframeTrack": "api/en/animation/tracks/VectorKeyframeTrack"
  48. },
  49. "Audio": {
  50. "Audio": "api/en/audio/Audio",
  51. "AudioAnalyser": "api/en/audio/AudioAnalyser",
  52. "AudioContext": "api/en/audio/AudioContext",
  53. "AudioListener": "api/en/audio/AudioListener",
  54. "PositionalAudio": "api/en/audio/PositionalAudio"
  55. },
  56. "Cameras": {
  57. "ArrayCamera": "api/en/cameras/ArrayCamera",
  58. "Camera": "api/en/cameras/Camera",
  59. "CubeCamera": "api/en/cameras/CubeCamera",
  60. "OrthographicCamera": "api/en/cameras/OrthographicCamera",
  61. "PerspectiveCamera": "api/en/cameras/PerspectiveCamera",
  62. "StereoCamera": "api/en/cameras/StereoCamera"
  63. },
  64. "Constants": {
  65. "Animation": "api/en/constants/Animation",
  66. "Core": "api/en/constants/Core",
  67. "CustomBlendingEquation": "api/en/constants/CustomBlendingEquations",
  68. "Materials": "api/en/constants/Materials",
  69. "Renderer": "api/en/constants/Renderer",
  70. "Textures": "api/en/constants/Textures"
  71. },
  72. "Core": {
  73. "BufferAttribute": "api/en/core/BufferAttribute",
  74. "BufferGeometry": "api/en/core/BufferGeometry",
  75. "Clock": "api/en/core/Clock",
  76. "DirectGeometry": "api/en/core/DirectGeometry",
  77. "EventDispatcher": "api/en/core/EventDispatcher",
  78. "Face3": "api/en/core/Face3",
  79. "Geometry": "api/en/core/Geometry",
  80. "InstancedBufferAttribute": "api/en/core/InstancedBufferAttribute",
  81. "InstancedBufferGeometry": "api/en/core/InstancedBufferGeometry",
  82. "InstancedInterleavedBuffer": "api/en/core/InstancedInterleavedBuffer",
  83. "InterleavedBuffer": "api/en/core/InterleavedBuffer",
  84. "InterleavedBufferAttribute": "api/en/core/InterleavedBufferAttribute",
  85. "Layers": "api/en/core/Layers",
  86. "Object3D": "api/en/core/Object3D",
  87. "Raycaster": "api/en/core/Raycaster",
  88. "Uniform": "api/en/core/Uniform"
  89. },
  90. "Core / BufferAttributes": {
  91. "BufferAttribute Types": "api/en/core/bufferAttributeTypes/BufferAttributeTypes"
  92. },
  93. "Deprecated": {
  94. "DeprecatedList": "api/en/deprecated/DeprecatedList"
  95. },
  96. "Extras": {
  97. "Earcut": "api/en/extras/Earcut",
  98. "ImageUtils": "api/en/extras/ImageUtils",
  99. "PMREMGenerator": "api/en/extras/PMREMGenerator",
  100. "ShapeUtils": "api/en/extras/ShapeUtils",
  101. },
  102. "Extras / Core": {
  103. "Curve": "api/en/extras/core/Curve",
  104. "CurvePath": "api/en/extras/core/CurvePath",
  105. "Font": "api/en/extras/core/Font",
  106. "Interpolations": "api/en/extras/core/Interpolations",
  107. "Path": "api/en/extras/core/Path",
  108. "Shape": "api/en/extras/core/Shape",
  109. "ShapePath": "api/en/extras/core/ShapePath"
  110. },
  111. "Extras / Curves": {
  112. "ArcCurve": "api/en/extras/curves/ArcCurve",
  113. "CatmullRomCurve3": "api/en/extras/curves/CatmullRomCurve3",
  114. "CubicBezierCurve": "api/en/extras/curves/CubicBezierCurve",
  115. "CubicBezierCurve3": "api/en/extras/curves/CubicBezierCurve3",
  116. "EllipseCurve": "api/en/extras/curves/EllipseCurve",
  117. "LineCurve": "api/en/extras/curves/LineCurve",
  118. "LineCurve3": "api/en/extras/curves/LineCurve3",
  119. "QuadraticBezierCurve": "api/en/extras/curves/QuadraticBezierCurve",
  120. "QuadraticBezierCurve3": "api/en/extras/curves/QuadraticBezierCurve3",
  121. "SplineCurve": "api/en/extras/curves/SplineCurve"
  122. },
  123. "Extras / Objects": {
  124. "ImmediateRenderObject": "api/en/extras/objects/ImmediateRenderObject",
  125. },
  126. "Geometries": {
  127. "BoxBufferGeometry": "api/en/geometries/BoxBufferGeometry",
  128. "BoxGeometry": "api/en/geometries/BoxGeometry",
  129. "CircleBufferGeometry": "api/en/geometries/CircleBufferGeometry",
  130. "CircleGeometry": "api/en/geometries/CircleGeometry",
  131. "ConeBufferGeometry": "api/en/geometries/ConeBufferGeometry",
  132. "ConeGeometry": "api/en/geometries/ConeGeometry",
  133. "CylinderBufferGeometry": "api/en/geometries/CylinderBufferGeometry",
  134. "CylinderGeometry": "api/en/geometries/CylinderGeometry",
  135. "DodecahedronBufferGeometry": "api/en/geometries/DodecahedronBufferGeometry",
  136. "DodecahedronGeometry": "api/en/geometries/DodecahedronGeometry",
  137. "EdgesGeometry": "api/en/geometries/EdgesGeometry",
  138. "ExtrudeBufferGeometry": "api/en/geometries/ExtrudeBufferGeometry",
  139. "ExtrudeGeometry": "api/en/geometries/ExtrudeGeometry",
  140. "IcosahedronBufferGeometry": "api/en/geometries/IcosahedronBufferGeometry",
  141. "IcosahedronGeometry": "api/en/geometries/IcosahedronGeometry",
  142. "LatheBufferGeometry": "api/en/geometries/LatheBufferGeometry",
  143. "LatheGeometry": "api/en/geometries/LatheGeometry",
  144. "OctahedronBufferGeometry": "api/en/geometries/OctahedronBufferGeometry",
  145. "OctahedronGeometry": "api/en/geometries/OctahedronGeometry",
  146. "ParametricBufferGeometry": "api/en/geometries/ParametricBufferGeometry",
  147. "ParametricGeometry": "api/en/geometries/ParametricGeometry",
  148. "PlaneBufferGeometry": "api/en/geometries/PlaneBufferGeometry",
  149. "PlaneGeometry": "api/en/geometries/PlaneGeometry",
  150. "PolyhedronBufferGeometry": "api/en/geometries/PolyhedronBufferGeometry",
  151. "PolyhedronGeometry": "api/en/geometries/PolyhedronGeometry",
  152. "RingBufferGeometry": "api/en/geometries/RingBufferGeometry",
  153. "RingGeometry": "api/en/geometries/RingGeometry",
  154. "ShapeBufferGeometry": "api/en/geometries/ShapeBufferGeometry",
  155. "ShapeGeometry": "api/en/geometries/ShapeGeometry",
  156. "SphereBufferGeometry": "api/en/geometries/SphereBufferGeometry",
  157. "SphereGeometry": "api/en/geometries/SphereGeometry",
  158. "TetrahedronBufferGeometry": "api/en/geometries/TetrahedronBufferGeometry",
  159. "TetrahedronGeometry": "api/en/geometries/TetrahedronGeometry",
  160. "TextBufferGeometry": "api/en/geometries/TextBufferGeometry",
  161. "TextGeometry": "api/en/geometries/TextGeometry",
  162. "TorusBufferGeometry": "api/en/geometries/TorusBufferGeometry",
  163. "TorusGeometry": "api/en/geometries/TorusGeometry",
  164. "TorusKnotBufferGeometry": "api/en/geometries/TorusKnotBufferGeometry",
  165. "TorusKnotGeometry": "api/en/geometries/TorusKnotGeometry",
  166. "TubeBufferGeometry": "api/en/geometries/TubeBufferGeometry",
  167. "TubeGeometry": "api/en/geometries/TubeGeometry",
  168. "WireframeGeometry": "api/en/geometries/WireframeGeometry"
  169. },
  170. "Helpers": {
  171. "ArrowHelper": "api/en/helpers/ArrowHelper",
  172. "AxesHelper": "api/en/helpers/AxesHelper",
  173. "BoxHelper": "api/en/helpers/BoxHelper",
  174. "Box3Helper": "api/en/helpers/Box3Helper",
  175. "CameraHelper": "api/en/helpers/CameraHelper",
  176. "DirectionalLightHelper": "api/en/helpers/DirectionalLightHelper",
  177. "GridHelper": "api/en/helpers/GridHelper",
  178. "PolarGridHelper": "api/en/helpers/PolarGridHelper",
  179. "HemisphereLightHelper": "api/en/helpers/HemisphereLightHelper",
  180. "PlaneHelper": "api/en/helpers/PlaneHelper",
  181. "PointLightHelper": "api/en/helpers/PointLightHelper",
  182. "SkeletonHelper": "api/en/helpers/SkeletonHelper",
  183. "SpotLightHelper": "api/en/helpers/SpotLightHelper"
  184. },
  185. "Lights": {
  186. "AmbientLight": "api/en/lights/AmbientLight",
  187. "DirectionalLight": "api/en/lights/DirectionalLight",
  188. "HemisphereLight": "api/en/lights/HemisphereLight",
  189. "Light": "api/en/lights/Light",
  190. "PointLight": "api/en/lights/PointLight",
  191. "RectAreaLight": "api/en/lights/RectAreaLight",
  192. "SpotLight": "api/en/lights/SpotLight"
  193. },
  194. "Lights / Shadows": {
  195. "LightShadow": "api/en/lights/shadows/LightShadow",
  196. "PointLightShadow": "api/en/lights/shadows/PointLightShadow",
  197. "DirectionalLightShadow": "api/en/lights/shadows/DirectionalLightShadow",
  198. "SpotLightShadow": "api/en/lights/shadows/SpotLightShadow"
  199. },
  200. "Loaders": {
  201. "AnimationLoader": "api/en/loaders/AnimationLoader",
  202. "AudioLoader": "api/en/loaders/AudioLoader",
  203. "BufferGeometryLoader": "api/en/loaders/BufferGeometryLoader",
  204. "Cache": "api/en/loaders/Cache",
  205. "CompressedTextureLoader": "api/en/loaders/CompressedTextureLoader",
  206. "CubeTextureLoader": "api/en/loaders/CubeTextureLoader",
  207. "DataTextureLoader": "api/en/loaders/DataTextureLoader",
  208. "FileLoader": "api/en/loaders/FileLoader",
  209. "FontLoader": "api/en/loaders/FontLoader",
  210. "ImageBitmapLoader": "api/en/loaders/ImageBitmapLoader",
  211. "ImageLoader": "api/en/loaders/ImageLoader",
  212. "Loader": "api/en/loaders/Loader",
  213. "LoaderUtils": "api/en/loaders/LoaderUtils",
  214. "MaterialLoader": "api/en/loaders/MaterialLoader",
  215. "ObjectLoader": "api/en/loaders/ObjectLoader",
  216. "TextureLoader": "api/en/loaders/TextureLoader"
  217. },
  218. "Loaders / Managers": {
  219. "DefaultLoadingManager": "api/en/loaders/managers/DefaultLoadingManager",
  220. "LoadingManager": "api/en/loaders/managers/LoadingManager"
  221. },
  222. "Materials": {
  223. "LineBasicMaterial": "api/en/materials/LineBasicMaterial",
  224. "LineDashedMaterial": "api/en/materials/LineDashedMaterial",
  225. "Material": "api/en/materials/Material",
  226. "MeshBasicMaterial": "api/en/materials/MeshBasicMaterial",
  227. "MeshDepthMaterial": "api/en/materials/MeshDepthMaterial",
  228. "MeshDistanceMaterial": "api/en/materials/MeshDistanceMaterial",
  229. "MeshLambertMaterial": "api/en/materials/MeshLambertMaterial",
  230. "MeshMatcapMaterial": "api/en/materials/MeshMatcapMaterial",
  231. "MeshNormalMaterial": "api/en/materials/MeshNormalMaterial",
  232. "MeshPhongMaterial": "api/en/materials/MeshPhongMaterial",
  233. "MeshPhysicalMaterial": "api/en/materials/MeshPhysicalMaterial",
  234. "MeshStandardMaterial": "api/en/materials/MeshStandardMaterial",
  235. "MeshToonMaterial": "api/en/materials/MeshToonMaterial",
  236. "PointsMaterial": "api/en/materials/PointsMaterial",
  237. "RawShaderMaterial": "api/en/materials/RawShaderMaterial",
  238. "ShaderMaterial": "api/en/materials/ShaderMaterial",
  239. "ShadowMaterial": "api/en/materials/ShadowMaterial",
  240. "SpriteMaterial": "api/en/materials/SpriteMaterial"
  241. },
  242. "Math": {
  243. "Box2": "api/en/math/Box2",
  244. "Box3": "api/en/math/Box3",
  245. "Color": "api/en/math/Color",
  246. "Cylindrical": "api/en/math/Cylindrical",
  247. "Euler": "api/en/math/Euler",
  248. "Frustum": "api/en/math/Frustum",
  249. "Interpolant": "api/en/math/Interpolant",
  250. "Line3": "api/en/math/Line3",
  251. "MathUtils": "api/en/math/MathUtils",
  252. "Matrix3": "api/en/math/Matrix3",
  253. "Matrix4": "api/en/math/Matrix4",
  254. "Plane": "api/en/math/Plane",
  255. "Quaternion": "api/en/math/Quaternion",
  256. "Ray": "api/en/math/Ray",
  257. "Sphere": "api/en/math/Sphere",
  258. "Spherical": "api/en/math/Spherical",
  259. "Triangle": "api/en/math/Triangle",
  260. "Vector2": "api/en/math/Vector2",
  261. "Vector3": "api/en/math/Vector3",
  262. "Vector4": "api/en/math/Vector4"
  263. },
  264. "Math / Interpolants": {
  265. "CubicInterpolant": "api/en/math/interpolants/CubicInterpolant",
  266. "DiscreteInterpolant": "api/en/math/interpolants/DiscreteInterpolant",
  267. "LinearInterpolant": "api/en/math/interpolants/LinearInterpolant",
  268. "QuaternionLinearInterpolant": "api/en/math/interpolants/QuaternionLinearInterpolant"
  269. },
  270. "Objects": {
  271. "Bone": "api/en/objects/Bone",
  272. "Group": "api/en/objects/Group",
  273. "InstancedMesh": "api/en/objects/InstancedMesh",
  274. "Line": "api/en/objects/Line",
  275. "LineLoop": "api/en/objects/LineLoop",
  276. "LineSegments": "api/en/objects/LineSegments",
  277. "LOD": "api/en/objects/LOD",
  278. "Mesh": "api/en/objects/Mesh",
  279. "Points": "api/en/objects/Points",
  280. "Skeleton": "api/en/objects/Skeleton",
  281. "SkinnedMesh": "api/en/objects/SkinnedMesh",
  282. "Sprite": "api/en/objects/Sprite"
  283. },
  284. "Renderers": {
  285. "WebGLMultisampleRenderTarget": "api/en/renderers/WebGLMultisampleRenderTarget",
  286. "WebGLRenderer": "api/en/renderers/WebGLRenderer",
  287. "WebGLRenderTarget": "api/en/renderers/WebGLRenderTarget",
  288. "WebGLCubeRenderTarget": "api/en/renderers/WebGLCubeRenderTarget"
  289. },
  290. "Renderers / Shaders": {
  291. "ShaderChunk": "api/en/renderers/shaders/ShaderChunk",
  292. "ShaderLib": "api/en/renderers/shaders/ShaderLib",
  293. "UniformsLib": "api/en/renderers/shaders/UniformsLib",
  294. "UniformsUtils": "api/en/renderers/shaders/UniformsUtils"
  295. },
  296. "Scenes": {
  297. "Fog": "api/en/scenes/Fog",
  298. "FogExp2": "api/en/scenes/FogExp2",
  299. "Scene": "api/en/scenes/Scene"
  300. },
  301. "Textures": {
  302. "CanvasTexture": "api/en/textures/CanvasTexture",
  303. "CompressedTexture": "api/en/textures/CompressedTexture",
  304. "CubeTexture": "api/en/textures/CubeTexture",
  305. "DataTexture": "api/en/textures/DataTexture",
  306. "DataTexture3D": "api/en/textures/DataTexture3D",
  307. "DepthTexture": "api/en/textures/DepthTexture",
  308. "Texture": "api/en/textures/Texture",
  309. "VideoTexture": "api/en/textures/VideoTexture"
  310. }
  311. },
  312. "Examples": {
  313. "Animations": {
  314. "CCDIKSolver": "examples/en/animations/CCDIKSolver",
  315. "MMDAnimationHelper": "examples/en/animations/MMDAnimationHelper",
  316. "MMDPhysics": "examples/en/animations/MMDPhysics"
  317. },
  318. "Controls": {
  319. "DeviceOrientationControls": "examples/en/controls/DeviceOrientationControls",
  320. "DragControls": "examples/en/controls/DragControls",
  321. "FirstPersonControls": "examples/en/controls/FirstPersonControls",
  322. "FlyControls": "examples/en/controls/FlyControls",
  323. "OrbitControls": "examples/en/controls/OrbitControls",
  324. "PointerLockControls": "examples/en/controls/PointerLockControls",
  325. "TrackballControls": "examples/en/controls/TrackballControls",
  326. "TransformControls": "examples/en/controls/TransformControls"
  327. },
  328. "Geometries": {
  329. "ConvexBufferGeometry": "examples/en/geometries/ConvexBufferGeometry",
  330. "ConvexGeometry": "examples/en/geometries/ConvexGeometry",
  331. "DecalGeometry": "examples/en/geometries/DecalGeometry"
  332. },
  333. "Helpers": {
  334. "FaceNormalsHelper": "examples/en/helpers/FaceNormalsHelper",
  335. "LightProbeHelper": "examples/en/helpers/LightProbeHelper",
  336. "PositionalAudioHelper": "examples/en/helpers/PositionalAudioHelper",
  337. "RectAreaLightHelper": "examples/en/helpers/RectAreaLightHelper",
  338. "VertexNormalsHelper": "examples/en/helpers/VertexNormalsHelper",
  339. "VertexTangentsHelper": "examples/en/helpers/VertexTangentsHelper"
  340. },
  341. "Loaders": {
  342. "BasisTextureLoader": "examples/en/loaders/BasisTextureLoader",
  343. "DRACOLoader": "examples/en/loaders/DRACOLoader",
  344. "GLTFLoader": "examples/en/loaders/GLTFLoader",
  345. "MMDLoader": "examples/en/loaders/MMDLoader",
  346. "MTLLoader": "examples/en/loaders/MTLLoader",
  347. "OBJLoader": "examples/en/loaders/OBJLoader",
  348. "OBJLoader2": "examples/en/loaders/OBJLoader2",
  349. "OBJLoader2Parallel": "examples/en/loaders/OBJLoader2Parallel",
  350. "PCDLoader": "examples/en/loaders/PCDLoader",
  351. "PDBLoader": "examples/en/loaders/PDBLoader",
  352. "PRWMLoader": "examples/en/loaders/PRWMLoader",
  353. "SVGLoader": "examples/en/loaders/SVGLoader",
  354. "TGALoader": "examples/en/loaders/TGALoader"
  355. },
  356. "Objects": {
  357. "Lensflare": "examples/en/objects/Lensflare",
  358. },
  359. "Post-Processing": {
  360. "EffectComposer": "examples/en/postprocessing/EffectComposer"
  361. },
  362. "Exporters": {
  363. "GLTFExporter": "examples/en/exporters/GLTFExporter",
  364. "PLYExporter": "examples/en/exporters/PLYExporter",
  365. "ColladaExporter": "examples/en/exporters/ColladaExporter"
  366. },
  367. "Math": {
  368. "LookupTable": "examples/en/math/Lut",
  369. "MeshSurfaceSampler": "examples/en/math/MeshSurfaceSampler",
  370. },
  371. "ConvexHull": {
  372. "Face": "examples/en/math/convexhull/Face",
  373. "HalfEdge": "examples/en/math/convexhull/HalfEdge",
  374. "ConvexHull": "examples/en/math/convexhull/ConvexHull",
  375. "VertexNode": "examples/en/math/convexhull/VertexNode",
  376. "VertexList": "examples/en/math/convexhull/VertexList"
  377. },
  378. "Renderers": {
  379. "CSS2DRenderer": "examples/en/renderers/CSS2DRenderer",
  380. "CSS3DRenderer": "examples/en/renderers/CSS3DRenderer",
  381. "SVGRenderer": "examples/en/renderers/SVGRenderer"
  382. },
  383. "Utils": {
  384. "BufferGeometryUtils": "examples/en/utils/BufferGeometryUtils",
  385. "SceneUtils": "examples/en/utils/SceneUtils",
  386. "SkeletonUtils": "examples/en/utils/SkeletonUtils"
  387. }
  388. },
  389. "Developer Reference": {
  390. "Polyfills": {
  391. "Polyfills": "api/en/Polyfills"
  392. },
  393. "WebGLRenderer": {
  394. "WebGLProgram": "api/en/renderers/webgl/WebGLProgram",
  395. "WebGLShader": "api/en/renderers/webgl/WebGLShader",
  396. "WebGLState": "api/en/renderers/webgl/WebGLState"
  397. }
  398. }
  399. },
  400. "zh": {
  401. "手册": {
  402. "起步": {
  403. "创建一个场景": "manual/zh/introduction/Creating-a-scene",
  404. "通过模块来引入": "manual/zh/introduction/Import-via-modules",
  405. "浏览器支持": "manual/zh/introduction/Browser-support",
  406. "WebGL兼容性检查": "manual/zh/introduction/WebGL-compatibility-check",
  407. "如何在本地运行Three.js": "manual/zh/introduction/How-to-run-things-locally",
  408. "Typescript setup": "manual/zh/introduction/Typescript-setup",
  409. "如何使用WebGL 2": "manual/zh/introduction/How-to-use-WebGL2",
  410. "画线": "manual/zh/introduction/Drawing-lines",
  411. "创建文字": "manual/zh/introduction/Creating-text",
  412. "载入3D模型": "manual/zh/introduction/Loading-3D-models",
  413. "常见问题": "manual/zh/introduction/FAQ",
  414. "一些有用的链接": "manual/zh/introduction/Useful-links"
  415. },
  416. "进阶": {
  417. "如何更新场景": "manual/zh/introduction/How-to-update-things",
  418. "如何废置对象": "manual/zh/introduction/How-to-dispose-of-objects",
  419. "如何创建VR内容": "manual/zh/introduction/How-to-create-VR-content",
  420. "如何使用后期处理": "manual/zh/introduction/How-to-use-post-processing",
  421. "矩阵变换": "manual/zh/introduction/Matrix-transformations",
  422. "动画系统": "manual/zh/introduction/Animation-system"
  423. },
  424. "构建工具": {
  425. "使用NPM进行测试": "manual/zh/buildTools/Testing-with-NPM"
  426. }
  427. },
  428. "参考": {
  429. "动画": {
  430. "AnimationAction": "api/zh/animation/AnimationAction",
  431. "AnimationClip": "api/zh/animation/AnimationClip",
  432. "AnimationMixer": "api/zh/animation/AnimationMixer",
  433. "AnimationObjectGroup": "api/zh/animation/AnimationObjectGroup",
  434. "AnimationUtils": "api/zh/animation/AnimationUtils",
  435. "KeyframeTrack": "api/zh/animation/KeyframeTrack",
  436. "PropertyBinding": "api/zh/animation/PropertyBinding",
  437. "PropertyMixer": "api/zh/animation/PropertyMixer"
  438. },
  439. "动画 / 轨道": {
  440. "BooleanKeyframeTrack": "api/zh/animation/tracks/BooleanKeyframeTrack",
  441. "ColorKeyframeTrack": "api/zh/animation/tracks/ColorKeyframeTrack",
  442. "NumberKeyframeTrack": "api/zh/animation/tracks/NumberKeyframeTrack",
  443. "QuaternionKeyframeTrack": "api/zh/animation/tracks/QuaternionKeyframeTrack",
  444. "StringKeyframeTrack": "api/zh/animation/tracks/StringKeyframeTrack",
  445. "VectorKeyframeTrack": "api/zh/animation/tracks/VectorKeyframeTrack"
  446. },
  447. "音频": {
  448. "Audio": "api/zh/audio/Audio",
  449. "AudioAnalyser": "api/zh/audio/AudioAnalyser",
  450. "AudioContext": "api/zh/audio/AudioContext",
  451. "AudioListener": "api/zh/audio/AudioListener",
  452. "PositionalAudio": "api/zh/audio/PositionalAudio"
  453. },
  454. "摄像机": {
  455. "ArrayCamera": "api/zh/cameras/ArrayCamera",
  456. "Camera": "api/zh/cameras/Camera",
  457. "CubeCamera": "api/zh/cameras/CubeCamera",
  458. "OrthographicCamera": "api/zh/cameras/OrthographicCamera",
  459. "PerspectiveCamera": "api/zh/cameras/PerspectiveCamera",
  460. "StereoCamera": "api/zh/cameras/StereoCamera"
  461. },
  462. "常量": {
  463. "Animation": "api/zh/constants/Animation",
  464. "Core": "api/zh/constants/Core",
  465. "CustomBlendingEquation": "api/zh/constants/CustomBlendingEquations",
  466. "Materials": "api/zh/constants/Materials",
  467. "Renderer": "api/zh/constants/Renderer",
  468. "Textures": "api/zh/constants/Textures"
  469. },
  470. "核心": {
  471. "BufferAttribute": "api/zh/core/BufferAttribute",
  472. "BufferGeometry": "api/zh/core/BufferGeometry",
  473. "Clock": "api/zh/core/Clock",
  474. "DirectGeometry": "api/zh/core/DirectGeometry",
  475. "EventDispatcher": "api/zh/core/EventDispatcher",
  476. "Face3": "api/zh/core/Face3",
  477. "Geometry": "api/zh/core/Geometry",
  478. "InstancedBufferAttribute": "api/zh/core/InstancedBufferAttribute",
  479. "InstancedBufferGeometry": "api/zh/core/InstancedBufferGeometry",
  480. "InstancedInterleavedBuffer": "api/zh/core/InstancedInterleavedBuffer",
  481. "InterleavedBuffer": "api/zh/core/InterleavedBuffer",
  482. "InterleavedBufferAttribute": "api/zh/core/InterleavedBufferAttribute",
  483. "Layers": "api/zh/core/Layers",
  484. "Object3D": "api/zh/core/Object3D",
  485. "Raycaster": "api/zh/core/Raycaster",
  486. "Uniform": "api/zh/core/Uniform"
  487. },
  488. "核心 / BufferAttributes": {
  489. "BufferAttribute Types": "api/zh/core/bufferAttributeTypes/BufferAttributeTypes"
  490. },
  491. "弃用列表": {
  492. "DeprecatedList": "api/zh/deprecated/DeprecatedList"
  493. },
  494. "附件": {
  495. "Earcut": "api/zh/extras/Earcut",
  496. "ImageUtils": "api/zh/extras/ImageUtils",
  497. "PMREMGenerator": "api/zh/extras/PMREMGenerator",
  498. "ShapeUtils": "api/zh/extras/ShapeUtils"
  499. },
  500. "附件 / 核心": {
  501. "Curve": "api/zh/extras/core/Curve",
  502. "CurvePath": "api/zh/extras/core/CurvePath",
  503. "Font": "api/zh/extras/core/Font",
  504. "Interpolations": "api/zh/extras/core/Interpolations",
  505. "Path": "api/zh/extras/core/Path",
  506. "Shape": "api/zh/extras/core/Shape",
  507. "ShapePath": "api/zh/extras/core/ShapePath"
  508. },
  509. "附件 / 曲线": {
  510. "ArcCurve": "api/zh/extras/curves/ArcCurve",
  511. "CatmullRomCurve3": "api/zh/extras/curves/CatmullRomCurve3",
  512. "CubicBezierCurve": "api/zh/extras/curves/CubicBezierCurve",
  513. "CubicBezierCurve3": "api/zh/extras/curves/CubicBezierCurve3",
  514. "EllipseCurve": "api/zh/extras/curves/EllipseCurve",
  515. "LineCurve": "api/zh/extras/curves/LineCurve",
  516. "LineCurve3": "api/zh/extras/curves/LineCurve3",
  517. "QuadraticBezierCurve": "api/zh/extras/curves/QuadraticBezierCurve",
  518. "QuadraticBezierCurve3": "api/zh/extras/curves/QuadraticBezierCurve3",
  519. "SplineCurve": "api/zh/extras/curves/SplineCurve"
  520. },
  521. "附件 / 物体": {
  522. "ImmediateRenderObject": "api/zh/extras/objects/ImmediateRenderObject",
  523. },
  524. "几何体": {
  525. "BoxBufferGeometry": "api/zh/geometries/BoxBufferGeometry",
  526. "BoxGeometry": "api/zh/geometries/BoxGeometry",
  527. "CircleBufferGeometry": "api/zh/geometries/CircleBufferGeometry",
  528. "CircleGeometry": "api/zh/geometries/CircleGeometry",
  529. "ConeBufferGeometry": "api/zh/geometries/ConeBufferGeometry",
  530. "ConeGeometry": "api/zh/geometries/ConeGeometry",
  531. "CylinderBufferGeometry": "api/zh/geometries/CylinderBufferGeometry",
  532. "CylinderGeometry": "api/zh/geometries/CylinderGeometry",
  533. "DodecahedronBufferGeometry": "api/zh/geometries/DodecahedronBufferGeometry",
  534. "DodecahedronGeometry": "api/zh/geometries/DodecahedronGeometry",
  535. "EdgesGeometry": "api/zh/geometries/EdgesGeometry",
  536. "ExtrudeBufferGeometry": "api/zh/geometries/ExtrudeBufferGeometry",
  537. "ExtrudeGeometry": "api/zh/geometries/ExtrudeGeometry",
  538. "IcosahedronBufferGeometry": "api/zh/geometries/IcosahedronBufferGeometry",
  539. "IcosahedronGeometry": "api/zh/geometries/IcosahedronGeometry",
  540. "LatheBufferGeometry": "api/zh/geometries/LatheBufferGeometry",
  541. "LatheGeometry": "api/zh/geometries/LatheGeometry",
  542. "OctahedronBufferGeometry": "api/zh/geometries/OctahedronBufferGeometry",
  543. "OctahedronGeometry": "api/zh/geometries/OctahedronGeometry",
  544. "ParametricBufferGeometry": "api/zh/geometries/ParametricBufferGeometry",
  545. "ParametricGeometry": "api/zh/geometries/ParametricGeometry",
  546. "PlaneBufferGeometry": "api/zh/geometries/PlaneBufferGeometry",
  547. "PlaneGeometry": "api/zh/geometries/PlaneGeometry",
  548. "PolyhedronBufferGeometry": "api/zh/geometries/PolyhedronBufferGeometry",
  549. "PolyhedronGeometry": "api/zh/geometries/PolyhedronGeometry",
  550. "RingBufferGeometry": "api/zh/geometries/RingBufferGeometry",
  551. "RingGeometry": "api/zh/geometries/RingGeometry",
  552. "ShapeBufferGeometry": "api/zh/geometries/ShapeBufferGeometry",
  553. "ShapeGeometry": "api/zh/geometries/ShapeGeometry",
  554. "SphereBufferGeometry": "api/zh/geometries/SphereBufferGeometry",
  555. "SphereGeometry": "api/zh/geometries/SphereGeometry",
  556. "TetrahedronBufferGeometry": "api/zh/geometries/TetrahedronBufferGeometry",
  557. "TetrahedronGeometry": "api/zh/geometries/TetrahedronGeometry",
  558. "TextBufferGeometry": "api/zh/geometries/TextBufferGeometry",
  559. "TextGeometry": "api/zh/geometries/TextGeometry",
  560. "TorusBufferGeometry": "api/zh/geometries/TorusBufferGeometry",
  561. "TorusGeometry": "api/zh/geometries/TorusGeometry",
  562. "TorusKnotBufferGeometry": "api/zh/geometries/TorusKnotBufferGeometry",
  563. "TorusKnotGeometry": "api/zh/geometries/TorusKnotGeometry",
  564. "TubeBufferGeometry": "api/zh/geometries/TubeBufferGeometry",
  565. "TubeGeometry": "api/zh/geometries/TubeGeometry",
  566. "WireframeGeometry": "api/zh/geometries/WireframeGeometry"
  567. },
  568. "辅助对象": {
  569. "ArrowHelper": "api/zh/helpers/ArrowHelper",
  570. "AxesHelper": "api/zh/helpers/AxesHelper",
  571. "BoxHelper": "api/zh/helpers/BoxHelper",
  572. "Box3Helper": "api/zh/helpers/Box3Helper",
  573. "CameraHelper": "api/zh/helpers/CameraHelper",
  574. "DirectionalLightHelper": "api/zh/helpers/DirectionalLightHelper",
  575. "GridHelper": "api/zh/helpers/GridHelper",
  576. "PolarGridHelper": "api/zh/helpers/PolarGridHelper",
  577. "HemisphereLightHelper": "api/zh/helpers/HemisphereLightHelper",
  578. "PlaneHelper": "api/zh/helpers/PlaneHelper",
  579. "PointLightHelper": "api/zh/helpers/PointLightHelper",
  580. "SkeletonHelper": "api/zh/helpers/SkeletonHelper",
  581. "SpotLightHelper": "api/zh/helpers/SpotLightHelper"
  582. },
  583. "灯光": {
  584. "AmbientLight": "api/zh/lights/AmbientLight",
  585. "DirectionalLight": "api/zh/lights/DirectionalLight",
  586. "HemisphereLight": "api/zh/lights/HemisphereLight",
  587. "Light": "api/zh/lights/Light",
  588. "PointLight": "api/zh/lights/PointLight",
  589. "RectAreaLight": "api/zh/lights/RectAreaLight",
  590. "SpotLight": "api/zh/lights/SpotLight"
  591. },
  592. "灯光 / 阴影": {
  593. "LightShadow": "api/zh/lights/shadows/LightShadow",
  594. "PointLightShadow": "api/zh/lights/shadows/PointLightShadow",
  595. "DirectionalLightShadow": "api/zh/lights/shadows/DirectionalLightShadow",
  596. "SpotLightShadow": "api/zh/lights/shadows/SpotLightShadow"
  597. },
  598. "加载器": {
  599. "AnimationLoader": "api/zh/loaders/AnimationLoader",
  600. "AudioLoader": "api/zh/loaders/AudioLoader",
  601. "BufferGeometryLoader": "api/zh/loaders/BufferGeometryLoader",
  602. "Cache": "api/zh/loaders/Cache",
  603. "CompressedTextureLoader": "api/zh/loaders/CompressedTextureLoader",
  604. "CubeTextureLoader": "api/zh/loaders/CubeTextureLoader",
  605. "DataTextureLoader": "api/zh/loaders/DataTextureLoader",
  606. "FileLoader": "api/zh/loaders/FileLoader",
  607. "FontLoader": "api/zh/loaders/FontLoader",
  608. "ImageBitmapLoader": "api/zh/loaders/ImageBitmapLoader",
  609. "ImageLoader": "api/zh/loaders/ImageLoader",
  610. "Loader": "api/zh/loaders/Loader",
  611. "LoaderUtils": "api/zh/loaders/LoaderUtils",
  612. "MaterialLoader": "api/zh/loaders/MaterialLoader",
  613. "ObjectLoader": "api/zh/loaders/ObjectLoader",
  614. "TextureLoader": "api/zh/loaders/TextureLoader"
  615. },
  616. "加载器 / 管理器": {
  617. "DefaultLoadingManager": "api/zh/loaders/managers/DefaultLoadingManager",
  618. "LoadingManager": "api/zh/loaders/managers/LoadingManager"
  619. },
  620. "材质": {
  621. "LineBasicMaterial": "api/zh/materials/LineBasicMaterial",
  622. "LineDashedMaterial": "api/zh/materials/LineDashedMaterial",
  623. "Material": "api/zh/materials/Material",
  624. "MeshBasicMaterial": "api/zh/materials/MeshBasicMaterial",
  625. "MeshDepthMaterial": "api/zh/materials/MeshDepthMaterial",
  626. "MeshDistanceMaterial": "api/zh/materials/MeshDistanceMaterial",
  627. "MeshLambertMaterial": "api/zh/materials/MeshLambertMaterial",
  628. "MeshMatcapMaterial": "api/zh/materials/MeshMatcapMaterial",
  629. "MeshNormalMaterial": "api/zh/materials/MeshNormalMaterial",
  630. "MeshPhongMaterial": "api/zh/materials/MeshPhongMaterial",
  631. "MeshPhysicalMaterial": "api/zh/materials/MeshPhysicalMaterial",
  632. "MeshStandardMaterial": "api/zh/materials/MeshStandardMaterial",
  633. "MeshToonMaterial": "api/zh/materials/MeshToonMaterial",
  634. "PointsMaterial": "api/zh/materials/PointsMaterial",
  635. "RawShaderMaterial": "api/zh/materials/RawShaderMaterial",
  636. "ShaderMaterial": "api/zh/materials/ShaderMaterial",
  637. "ShadowMaterial": "api/zh/materials/ShadowMaterial",
  638. "SpriteMaterial": "api/zh/materials/SpriteMaterial"
  639. },
  640. "数学库": {
  641. "Box2": "api/zh/math/Box2",
  642. "Box3": "api/zh/math/Box3",
  643. "Color": "api/zh/math/Color",
  644. "Cylindrical": "api/zh/math/Cylindrical",
  645. "Euler": "api/zh/math/Euler",
  646. "Frustum": "api/zh/math/Frustum",
  647. "Interpolant": "api/zh/math/Interpolant",
  648. "Line3": "api/zh/math/Line3",
  649. "MathUtils": "api/zh/math/MathUtils",
  650. "Matrix3": "api/zh/math/Matrix3",
  651. "Matrix4": "api/zh/math/Matrix4",
  652. "Plane": "api/zh/math/Plane",
  653. "Quaternion": "api/zh/math/Quaternion",
  654. "Ray": "api/zh/math/Ray",
  655. "Sphere": "api/zh/math/Sphere",
  656. "Spherical": "api/zh/math/Spherical",
  657. "Triangle": "api/zh/math/Triangle",
  658. "Vector2": "api/zh/math/Vector2",
  659. "Vector3": "api/zh/math/Vector3",
  660. "Vector4": "api/zh/math/Vector4"
  661. },
  662. "数学库 / 插值": {
  663. "CubicInterpolant": "api/zh/math/interpolants/CubicInterpolant",
  664. "DiscreteInterpolant": "api/zh/math/interpolants/DiscreteInterpolant",
  665. "LinearInterpolant": "api/zh/math/interpolants/LinearInterpolant",
  666. "QuaternionLinearInterpolant": "api/zh/math/interpolants/QuaternionLinearInterpolant"
  667. },
  668. "物体": {
  669. "Bone": "api/zh/objects/Bone",
  670. "Group": "api/zh/objects/Group",
  671. "InstancedMesh": "api/zh/objects/InstancedMesh",
  672. "Line": "api/zh/objects/Line",
  673. "LineLoop": "api/zh/objects/LineLoop",
  674. "LineSegments": "api/zh/objects/LineSegments",
  675. "LOD": "api/zh/objects/LOD",
  676. "Mesh": "api/zh/objects/Mesh",
  677. "Points": "api/zh/objects/Points",
  678. "Skeleton": "api/zh/objects/Skeleton",
  679. "SkinnedMesh": "api/zh/objects/SkinnedMesh",
  680. "Sprite": "api/zh/objects/Sprite"
  681. },
  682. "渲染器": {
  683. "WebGLMultisampleRenderTarget": "api/zh/renderers/WebGLMultisampleRenderTarget",
  684. "WebGLRenderer": "api/zh/renderers/WebGLRenderer",
  685. "WebGLRenderTarget": "api/zh/renderers/WebGLRenderTarget",
  686. "WebGLCubeRenderTarget": "api/zh/renderers/WebGLCubeRenderTarget"
  687. },
  688. "渲染器 / 着色器": {
  689. "ShaderChunk": "api/zh/renderers/shaders/ShaderChunk",
  690. "ShaderLib": "api/zh/renderers/shaders/ShaderLib",
  691. "UniformsLib": "api/zh/renderers/shaders/UniformsLib",
  692. "UniformsUtils": "api/zh/renderers/shaders/UniformsUtils"
  693. },
  694. "场景": {
  695. "Fog": "api/zh/scenes/Fog",
  696. "FogExp2": "api/zh/scenes/FogExp2",
  697. "Scene": "api/zh/scenes/Scene"
  698. },
  699. "纹理贴图": {
  700. "CanvasTexture": "api/zh/textures/CanvasTexture",
  701. "CompressedTexture": "api/zh/textures/CompressedTexture",
  702. "CubeTexture": "api/zh/textures/CubeTexture",
  703. "DataTexture": "api/zh/textures/DataTexture",
  704. "DataTexture3D": "api/zh/textures/DataTexture3D",
  705. "DepthTexture": "api/zh/textures/DepthTexture",
  706. "Texture": "api/zh/textures/Texture",
  707. "VideoTexture": "api/zh/textures/VideoTexture"
  708. }
  709. },
  710. "示例": {
  711. "动画": {
  712. "CCDIKSolver": "examples/zh/animations/CCDIKSolver",
  713. "MMDAnimationHelper": "examples/zh/animations/MMDAnimationHelper",
  714. "MMDPhysics": "examples/zh/animations/MMDPhysics"
  715. },
  716. "控制": {
  717. "DeviceOrientationControls": "examples/zh/controls/DeviceOrientationControls",
  718. "DragControls": "examples/zh/controls/DragControls",
  719. "FirstPersonControls": "examples/zh/controls/FirstPersonControls",
  720. "FlyControls": "examples/zh/controls/FlyControls",
  721. "OrbitControls": "examples/zh/controls/OrbitControls",
  722. "PointerLockControls": "examples/zh/controls/PointerLockControls",
  723. "TrackballControls": "examples/zh/controls/TrackballControls",
  724. "TransformControls": "examples/zh/controls/TransformControls"
  725. },
  726. "几何体": {
  727. "ConvexBufferGeometry": "examples/zh/geometries/ConvexBufferGeometry",
  728. "ConvexGeometry": "examples/zh/geometries/ConvexGeometry",
  729. "DecalGeometry": "examples/zh/geometries/DecalGeometry"
  730. },
  731. "辅助对象": {
  732. "FaceNormalsHelper": "examples/zh/helpers/FaceNormalsHelper",
  733. "LightProbeHelper": "examples/zh/helpers/LightProbeHelper",
  734. "PositionalAudioHelper": "examples/zh/helpers/PositionalAudioHelper",
  735. "RectAreaLightHelper": "examples/zh/helpers/RectAreaLightHelper",
  736. "VertexNormalsHelper": "examples/zh/helpers/VertexNormalsHelper",
  737. "VertexTangentsHelper": "examples/zh/helpers/VertexTangentsHelper"
  738. },
  739. "加载器": {
  740. "BasisTextureLoader": "examples/zh/loaders/BasisTextureLoader",
  741. "DRACOLoader": "examples/zh/loaders/DRACOLoader",
  742. "GLTFLoader": "examples/zh/loaders/GLTFLoader",
  743. "MMDLoader": "examples/zh/loaders/MMDLoader",
  744. "MTLLoader": "examples/zh/loaders/MTLLoader",
  745. "OBJLoader": "examples/zh/loaders/OBJLoader",
  746. "OBJLoader2": "examples/zh/loaders/OBJLoader2",
  747. "PCDLoader": "examples/zh/loaders/PCDLoader",
  748. "PDBLoader": "examples/zh/loaders/PDBLoader",
  749. "PRWMLoader": "examples/zh/loaders/PRWMLoader",
  750. "SVGLoader": "examples/zh/loaders/SVGLoader",
  751. "TGALoader": "examples/zh/loaders/TGALoader"
  752. },
  753. "物体": {
  754. "Lensflare": "examples/zh/objects/Lensflare",
  755. },
  756. "后期处理": {
  757. "EffectComposer": "examples/zh/postprocessing/EffectComposer"
  758. },
  759. "导出器": {
  760. "GLTFExporter": "examples/zh/exporters/GLTFExporter",
  761. "PLYExporter": "examples/zh/exporters/PLYExporter",
  762. "ColladaExporter": "examples/zh/exporters/ColladaExporter"
  763. },
  764. "数学库": {
  765. "LookupTable": "examples/zh/math/Lut",
  766. "MeshSurfaceSampler": "examples/zh/math/MeshSurfaceSampler",
  767. },
  768. "QuickHull": {
  769. "Face": "examples/zh/math/convexhull/Face",
  770. "HalfEdge": "examples/zh/math/convexhull/HalfEdge",
  771. "ConvexHull": "examples/zh/math/convexhull/ConvexHull",
  772. "VertexNode": "examples/zh/math/convexhull/VertexNode",
  773. "VertexList": "examples/zh/math/convexhull/VertexList"
  774. },
  775. "渲染器": {
  776. "CSS2DRenderer": "examples/zh/renderers/CSS2DRenderer",
  777. "CSS3DRenderer": "examples/zh/renderers/CSS3DRenderer",
  778. "SVGRenderer": "examples/zh/renderers/SVGRenderer"
  779. },
  780. "实用工具": {
  781. "BufferGeometryUtils": "examples/zh/utils/BufferGeometryUtils",
  782. "SceneUtils": "examples/zh/utils/SceneUtils",
  783. "SkeletonUtils": "examples/zh/utils/SkeletonUtils"
  784. }
  785. },
  786. "开发者参考": {
  787. "差异化支持": {
  788. "Polyfills": "api/zh/Polyfills"
  789. },
  790. "WebGL渲染器": {
  791. "WebGLProgram": "api/zh/renderers/webgl/WebGLProgram",
  792. "WebGLShader": "api/zh/renderers/webgl/WebGLShader",
  793. "WebGLState": "api/zh/renderers/webgl/WebGLState"
  794. }
  795. }
  796. }
  797. };