@types/three 0.169.0 → 0.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- three/README.md +1 -1
- three/build/three.core.d.ts +1 -0
- three/build/three.core.min.d.ts +1 -0
- three/build/three.tsl.d.ts +1 -0
- three/build/three.tsl.min.d.ts +1 -0
- three/examples/jsm/Addons.d.ts +3 -3
- three/examples/jsm/animation/MMDAnimationHelper.d.ts +4 -0
- three/examples/jsm/animation/MMDPhysics.d.ts +4 -0
- three/examples/jsm/controls/ArcballControls.d.ts +6 -1
- three/examples/jsm/controls/TransformControls.d.ts +45 -1
- three/examples/jsm/csm/CSMFrustum.d.ts +8 -2
- three/examples/jsm/csm/CSMHelper.d.ts +2 -1
- three/examples/jsm/csm/CSMShadowNode.d.ts +45 -0
- three/examples/jsm/curves/NURBSCurve.d.ts +12 -1
- three/examples/jsm/exporters/GLTFExporter.d.ts +43 -10
- three/examples/jsm/exporters/MMDExporter.d.ts +4 -0
- three/examples/jsm/exporters/USDZExporter.d.ts +4 -0
- three/examples/jsm/geometries/DecalGeometry.d.ts +10 -4
- three/examples/jsm/geometries/TeapotGeometry.d.ts +2 -2
- three/examples/jsm/helpers/TextureHelperGPU.d.ts +10 -0
- three/examples/jsm/lighting/TiledLighting.d.ts +10 -0
- three/examples/jsm/lines/Wireframe.d.ts +5 -2
- three/examples/jsm/lines/WireframeGeometry2.d.ts +1 -1
- three/examples/jsm/lines/webgpu/Wireframe.d.ts +13 -0
- three/examples/jsm/loaders/EXRLoader.d.ts +2 -2
- three/examples/jsm/loaders/GLTFLoader.d.ts +1 -2
- three/examples/jsm/loaders/KTX2Loader.d.ts +1 -0
- three/examples/jsm/loaders/LDrawLoader.d.ts +10 -0
- three/examples/jsm/loaders/MMDLoader.d.ts +4 -0
- three/examples/jsm/materials/LDrawConditionalLineMaterial.d.ts +9 -0
- three/examples/jsm/materials/LDrawConditionalLineNodeMaterial.d.ts +9 -0
- three/examples/jsm/materials/MeshGouraudMaterial.d.ts +0 -1
- three/examples/jsm/math/ColorSpaces.d.ts +11 -0
- three/examples/jsm/misc/ProgressiveLightMap.d.ts +8 -10
- three/examples/jsm/misc/ProgressiveLightMapGPU.d.ts +27 -0
- three/examples/jsm/objects/SkyMesh.d.ts +2 -2
- three/examples/jsm/objects/Water2Mesh.d.ts +13 -2
- three/examples/jsm/objects/WaterMesh.d.ts +11 -2
- three/examples/jsm/renderers/SVGRenderer.d.ts +2 -2
- three/{src/nodes → examples/jsm/tsl}/display/AfterImageNode.d.ts +2 -5
- three/{src/nodes → examples/jsm/tsl}/display/AnaglyphPassNode.d.ts +2 -3
- three/{src/nodes → examples/jsm/tsl}/display/AnamorphicNode.d.ts +2 -4
- three/examples/jsm/tsl/display/BleachBypass.d.ts +4 -0
- three/{src/nodes → examples/jsm/tsl}/display/BloomNode.d.ts +2 -5
- three/{src/nodes → examples/jsm/tsl}/display/DenoiseNode.d.ts +3 -8
- three/{src/nodes → examples/jsm/tsl}/display/DepthOfFieldNode.d.ts +2 -5
- three/{src/nodes → examples/jsm/tsl}/display/DotScreenNode.d.ts +2 -5
- three/{src/nodes → examples/jsm/tsl}/display/FXAANode.d.ts +2 -3
- three/{src/nodes → examples/jsm/tsl}/display/FilmNode.d.ts +2 -3
- three/{src/nodes → examples/jsm/tsl}/display/GTAONode.d.ts +5 -14
- three/{src/nodes → examples/jsm/tsl}/display/GaussianBlurNode.d.ts +13 -5
- three/examples/jsm/tsl/display/LensflareNode.d.ts +35 -0
- three/{src/nodes → examples/jsm/tsl}/display/Lut3DNode.d.ts +2 -6
- three/{src/nodes → examples/jsm/tsl}/display/MotionBlur.d.ts +2 -2
- three/examples/jsm/tsl/display/OutlineNode.d.ts +32 -0
- three/{src/nodes → examples/jsm/tsl}/display/ParallaxBarrierPassNode.d.ts +2 -3
- three/{src/nodes → examples/jsm/tsl}/display/PixelationPassNode.d.ts +2 -5
- three/{src/nodes → examples/jsm/tsl}/display/RGBShiftNode.d.ts +2 -4
- three/examples/jsm/tsl/display/SMAANode.d.ts +18 -0
- three/{src/nodes → examples/jsm/tsl}/display/SSAAPassNode.d.ts +2 -7
- three/examples/jsm/tsl/display/SSRNode.d.ts +38 -0
- three/examples/jsm/tsl/display/Sepia.d.ts +4 -0
- three/{src/nodes → examples/jsm/tsl}/display/SobelOperatorNode.d.ts +2 -3
- three/{src/nodes → examples/jsm/tsl}/display/StereoCompositePassNode.d.ts +1 -5
- three/{src/nodes → examples/jsm/tsl}/display/StereoPassNode.d.ts +2 -5
- three/examples/jsm/tsl/display/TRAAPassNode.d.ts +15 -0
- three/{src/nodes → examples/jsm/tsl}/display/TransitionNode.d.ts +2 -5
- three/examples/jsm/tsl/display/hashBlur.d.ts +8 -0
- three/examples/jsm/tsl/lighting/TiledLightsNode.d.ts +23 -0
- three/package.json +5 -4
- three/src/Three.Core.d.ts +158 -0
- three/src/Three.TSL.d.ts +528 -0
- three/src/Three.WebGPU.Nodes.d.ts +15 -192
- three/src/Three.WebGPU.d.ts +14 -192
- three/src/Three.d.ts +3 -164
- three/src/animation/AnimationClip.d.ts +3 -1
- three/src/constants.d.ts +1 -9
- three/src/core/BufferGeometry.d.ts +13 -2
- three/src/core/Clock.d.ts +4 -6
- three/src/core/InterleavedBuffer.d.ts +12 -0
- three/src/core/RenderTarget.d.ts +1 -2
- three/src/loaders/FileLoader.d.ts +3 -3
- three/src/materials/LineBasicMaterial.d.ts +0 -5
- three/src/materials/LineDashedMaterial.d.ts +0 -5
- three/src/materials/Material.d.ts +6 -6
- three/src/materials/MeshBasicMaterial.d.ts +0 -5
- three/src/materials/MeshDepthMaterial.d.ts +0 -5
- three/src/materials/MeshDistanceMaterial.d.ts +0 -5
- three/src/materials/MeshLambertMaterial.d.ts +0 -5
- three/src/materials/MeshMatcapMaterial.d.ts +0 -5
- three/src/materials/MeshNormalMaterial.d.ts +0 -5
- three/src/materials/MeshPhongMaterial.d.ts +0 -5
- three/src/materials/MeshPhysicalMaterial.d.ts +0 -5
- three/src/materials/MeshStandardMaterial.d.ts +0 -5
- three/src/materials/MeshToonMaterial.d.ts +0 -5
- three/src/materials/PointsMaterial.d.ts +0 -5
- three/src/materials/RawShaderMaterial.d.ts +0 -2
- three/src/materials/ShaderMaterial.d.ts +0 -5
- three/src/materials/ShadowMaterial.d.ts +0 -5
- three/src/materials/SpriteMaterial.d.ts +0 -5
- three/src/materials/nodes/LineDashedNodeMaterial.d.ts +3 -0
- three/src/materials/nodes/MeshNormalNodeMaterial.d.ts +2 -2
- three/src/materials/nodes/NodeMaterial.d.ts +6 -1
- three/src/materials/nodes/NodeMaterials.d.ts +19 -16
- three/src/materials/nodes/manager/NodeMaterialObserver.d.ts +15 -0
- three/src/math/Color.d.ts +39 -22
- three/src/math/ColorManagement.d.ts +24 -24
- three/src/math/Vector4.d.ts +2 -0
- three/src/nodes/Nodes.d.ts +2 -22
- three/src/nodes/TSL.d.ts +14 -26
- three/src/nodes/accessors/Arrays.d.ts +6 -0
- three/src/nodes/accessors/BuiltinNode.d.ts +14 -0
- three/src/nodes/accessors/Camera.d.ts +0 -1
- three/src/nodes/accessors/ClippingNode.d.ts +6 -0
- three/src/nodes/accessors/InstanceNode.d.ts +15 -3
- three/src/nodes/accessors/InstancedMeshNode.d.ts +11 -0
- three/src/nodes/accessors/Lights.d.ts +15 -0
- three/src/nodes/accessors/SceneNode.d.ts +2 -0
- three/src/nodes/accessors/StorageBufferNode.d.ts +20 -11
- three/src/nodes/accessors/StorageTextureNode.d.ts +5 -3
- three/src/nodes/accessors/UniformArrayNode.d.ts +2 -2
- three/src/nodes/accessors/VelocityNode.d.ts +4 -0
- three/src/nodes/code/ScriptableNode.d.ts +1 -1
- three/src/nodes/core/IndexNode.d.ts +2 -0
- three/src/nodes/core/NodeUtils.d.ts +7 -0
- three/src/nodes/core/StackNode.d.ts +10 -5
- three/src/nodes/core/VarNode.d.ts +12 -1
- three/src/nodes/core/constants.d.ts +6 -0
- three/src/nodes/display/BlendModes.d.ts +32 -0
- three/src/nodes/display/ColorAdjustment.d.ts +29 -0
- three/src/nodes/display/ColorSpaceFunctions.d.ts +2 -2
- three/src/nodes/display/ColorSpaceNode.d.ts +14 -8
- three/src/nodes/display/RenderOutputNode.d.ts +4 -4
- three/src/nodes/display/ScreenNode.d.ts +5 -0
- three/src/nodes/display/ViewportDepthNode.d.ts +4 -0
- three/src/nodes/functions/material/getAlphaHashThreshold.d.ts +6 -0
- three/src/nodes/functions/material/getParallaxCorrectNormal.d.ts +10 -0
- three/src/nodes/gpgpu/AtomicFunctionNode.d.ts +88 -0
- three/src/nodes/gpgpu/BarrierNode.d.ts +12 -0
- three/src/nodes/gpgpu/ComputeBuiltinNode.d.ts +13 -0
- three/src/nodes/gpgpu/ComputeNode.d.ts +5 -0
- three/src/nodes/gpgpu/WorkgroupInfoNode.d.ts +17 -0
- three/src/nodes/lighting/AnalyticLightNode.d.ts +11 -0
- three/src/nodes/lighting/LightsNode.d.ts +7 -2
- three/src/nodes/lighting/PointLightNode.d.ts +14 -1
- three/src/nodes/lighting/PointShadowNode.d.ts +30 -0
- three/src/nodes/lighting/ShadowNode.d.ts +35 -0
- three/src/nodes/math/OperatorNode.d.ts +3 -0
- three/src/nodes/tsl/TSLBase.d.ts +5 -0
- three/src/nodes/tsl/TSLCore.d.ts +3 -0
- three/src/nodes/utils/Discard.d.ts +1 -1
- three/src/nodes/utils/Oscillators.d.ts +7 -0
- three/src/nodes/utils/PostProcessingUtils.d.ts +45 -0
- three/src/nodes/utils/ReflectorNode.d.ts +17 -4
- three/src/nodes/utils/SplitNode.d.ts +1 -1
- three/src/nodes/utils/Timer.d.ts +21 -0
- three/src/objects/BatchedMesh.d.ts +51 -6
- three/src/objects/ClippingGroup.d.ts +41 -0
- three/src/renderers/WebGLRenderer.d.ts +24 -11
- three/src/renderers/common/Animation.d.ts +11 -4
- three/src/renderers/common/ClippingContext.d.ts +16 -14
- three/src/renderers/common/Constants.d.ts +2 -1
- three/src/renderers/common/Geometries.d.ts +1 -0
- three/src/renderers/common/IndirectStorageBufferAttribute.d.ts +10 -0
- three/src/renderers/common/Lighting.d.ts +15 -0
- three/src/renderers/common/PostProcessingUtils.d.ts +66 -0
- three/src/renderers/common/RenderList.d.ts +10 -2
- three/src/renderers/common/RenderLists.d.ts +3 -1
- three/src/renderers/common/RenderObject.d.ts +9 -4
- three/src/renderers/common/RenderObjects.d.ts +3 -0
- three/src/renderers/common/Renderer.d.ts +49 -10
- three/src/renderers/common/UniformsGroup.d.ts +1 -0
- three/src/renderers/common/extras/PMREMGenerator.d.ts +20 -2
- three/src/renderers/common/nodes/NodeLibrary.d.ts +2 -11
- three/src/renderers/common/nodes/NodeUniform.d.ts +7 -0
- three/src/renderers/webgl/WebGLPrograms.d.ts +3 -10
- three/src/renderers/webgl/WebGLState.d.ts +14 -11
- three/src/renderers/webgl/WebGLUtils.d.ts +2 -2
- three/src/textures/CompressedTexture.d.ts +1 -2
- three/src/textures/CubeTexture.d.ts +1 -2
- three/src/textures/Data3DTexture.d.ts +4 -2
- three/src/textures/DataArrayTexture.d.ts +1 -1
- three/src/textures/DataTexture.d.ts +7 -3
- three/src/textures/Texture.d.ts +3 -4
- three/examples/jsm/cameras/CinematicCamera.d.ts +0 -34
- three/src/nodes/display/BleachBypass.d.ts +0 -4
- three/src/nodes/display/BlendMode.d.ts +0 -10
- three/src/nodes/display/Sepia.d.ts +0 -4
- three/src/nodes/lighting/LightNode.d.ts +0 -18
- three/src/nodes/utils/OscNode.d.ts +0 -25
- three/src/nodes/utils/TimerNode.d.ts +0 -25
- three/src/textures/types.d.ts +0 -9
- /three/examples/jsm/utils/{TextureUtils.d.ts → WebGLTextureUtils.d.ts} +0 -0
- /three/examples/jsm/utils/{TextureUtilsGPU.d.ts → WebGPUTextureUtils.d.ts} +0 -0
three/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/three",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.171.0",
|
|
4
4
|
"description": "TypeScript definitions for three",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/three",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"./addons/*": "./examples/jsm/*",
|
|
31
31
|
"./src/*": "./src/*",
|
|
32
32
|
"./webgpu": "./build/three.webgpu.js",
|
|
33
|
-
"./tsl": "./build/three.
|
|
33
|
+
"./tsl": "./build/three.tsl.js",
|
|
34
34
|
"./package.json": "./package.json"
|
|
35
35
|
},
|
|
36
36
|
"repository": {
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"fflate": "~0.8.2",
|
|
48
48
|
"meshoptimizer": "~0.18.1"
|
|
49
49
|
},
|
|
50
|
-
"
|
|
51
|
-
"
|
|
50
|
+
"peerDependencies": {},
|
|
51
|
+
"typesPublisherContentHash": "96378b7c9c51d7d450e3a352e0282faee14373ce68b57df6a1afc567d6dd16f9",
|
|
52
|
+
"typeScriptVersion": "5.0"
|
|
52
53
|
}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
export * from "./animation/AnimationAction.js";
|
|
2
|
+
export * from "./animation/AnimationClip.js";
|
|
3
|
+
export * from "./animation/AnimationMixer.js";
|
|
4
|
+
export * from "./animation/AnimationObjectGroup.js";
|
|
5
|
+
export { AnimationUtils } from "./animation/AnimationUtils.js";
|
|
6
|
+
export * from "./animation/KeyframeTrack.js";
|
|
7
|
+
export * from "./animation/PropertyBinding.js";
|
|
8
|
+
export * from "./animation/PropertyMixer.js";
|
|
9
|
+
export * from "./animation/tracks/BooleanKeyframeTrack.js";
|
|
10
|
+
export * from "./animation/tracks/ColorKeyframeTrack.js";
|
|
11
|
+
export * from "./animation/tracks/NumberKeyframeTrack.js";
|
|
12
|
+
export * from "./animation/tracks/QuaternionKeyframeTrack.js";
|
|
13
|
+
export * from "./animation/tracks/StringKeyframeTrack.js";
|
|
14
|
+
export * from "./animation/tracks/VectorKeyframeTrack.js";
|
|
15
|
+
export * from "./audio/Audio.js";
|
|
16
|
+
export * from "./audio/AudioAnalyser.js";
|
|
17
|
+
export * from "./audio/AudioContext.js";
|
|
18
|
+
export * from "./audio/AudioListener.js";
|
|
19
|
+
export * from "./audio/PositionalAudio.js";
|
|
20
|
+
export * from "./cameras/ArrayCamera.js";
|
|
21
|
+
export * from "./cameras/Camera.js";
|
|
22
|
+
export * from "./cameras/CubeCamera.js";
|
|
23
|
+
export * from "./cameras/OrthographicCamera.js";
|
|
24
|
+
export * from "./cameras/PerspectiveCamera.js";
|
|
25
|
+
export * from "./cameras/StereoCamera.js";
|
|
26
|
+
export * from "./constants.js";
|
|
27
|
+
export * from "./core/BufferAttribute.js";
|
|
28
|
+
export * from "./core/BufferGeometry.js";
|
|
29
|
+
export * from "./core/Clock.js";
|
|
30
|
+
export * from "./core/EventDispatcher.js";
|
|
31
|
+
export * from "./core/GLBufferAttribute.js";
|
|
32
|
+
export * from "./core/InstancedBufferAttribute.js";
|
|
33
|
+
export * from "./core/InstancedBufferGeometry.js";
|
|
34
|
+
export * from "./core/InstancedInterleavedBuffer.js";
|
|
35
|
+
export * from "./core/InterleavedBuffer.js";
|
|
36
|
+
export * from "./core/InterleavedBufferAttribute.js";
|
|
37
|
+
export * from "./core/Layers.js";
|
|
38
|
+
export * from "./core/Object3D.js";
|
|
39
|
+
export * from "./core/Raycaster.js";
|
|
40
|
+
export * from "./core/RenderTarget.js";
|
|
41
|
+
export * from "./core/Uniform.js";
|
|
42
|
+
export * from "./core/UniformsGroup.js";
|
|
43
|
+
export * from "./extras/Controls.js";
|
|
44
|
+
export * from "./extras/core/Curve.js";
|
|
45
|
+
export * from "./extras/core/CurvePath.js";
|
|
46
|
+
export * from "./extras/core/Path.js";
|
|
47
|
+
export * from "./extras/core/Shape.js";
|
|
48
|
+
export * from "./extras/core/ShapePath.js";
|
|
49
|
+
export * from "./extras/curves/Curves.js";
|
|
50
|
+
export { DataUtils } from "./extras/DataUtils.js";
|
|
51
|
+
export * from "./extras/ImageUtils.js";
|
|
52
|
+
export * from "./extras/ShapeUtils.js";
|
|
53
|
+
export { TextureUtils } from "./extras/TextureUtils.js";
|
|
54
|
+
export * from "./geometries/Geometries.js";
|
|
55
|
+
export * from "./helpers/ArrowHelper.js";
|
|
56
|
+
export * from "./helpers/AxesHelper.js";
|
|
57
|
+
export * from "./helpers/Box3Helper.js";
|
|
58
|
+
export * from "./helpers/BoxHelper.js";
|
|
59
|
+
export * from "./helpers/CameraHelper.js";
|
|
60
|
+
export * from "./helpers/DirectionalLightHelper.js";
|
|
61
|
+
export * from "./helpers/GridHelper.js";
|
|
62
|
+
export * from "./helpers/HemisphereLightHelper.js";
|
|
63
|
+
export * from "./helpers/PlaneHelper.js";
|
|
64
|
+
export * from "./helpers/PointLightHelper.js";
|
|
65
|
+
export * from "./helpers/PolarGridHelper.js";
|
|
66
|
+
export * from "./helpers/SkeletonHelper.js";
|
|
67
|
+
export * from "./helpers/SpotLightHelper.js";
|
|
68
|
+
export * from "./lights/AmbientLight.js";
|
|
69
|
+
export * from "./lights/DirectionalLight.js";
|
|
70
|
+
export type { DirectionalLightShadow } from "./lights/DirectionalLightShadow.js";
|
|
71
|
+
export * from "./lights/HemisphereLight.js";
|
|
72
|
+
export * from "./lights/Light.js";
|
|
73
|
+
export * from "./lights/LightProbe.js";
|
|
74
|
+
export type { LightShadow, LightShadowJSON } from "./lights/LightShadow.js";
|
|
75
|
+
export * from "./lights/PointLight.js";
|
|
76
|
+
export type { PointLightShadow } from "./lights/PointLightShadow.js";
|
|
77
|
+
export * from "./lights/RectAreaLight.js";
|
|
78
|
+
export * from "./lights/SpotLight.js";
|
|
79
|
+
export type { SpotLightShadow } from "./lights/SpotLightShadow.js";
|
|
80
|
+
export * from "./loaders/AnimationLoader.js";
|
|
81
|
+
export * from "./loaders/AudioLoader.js";
|
|
82
|
+
export * from "./loaders/BufferGeometryLoader.js";
|
|
83
|
+
export * from "./loaders/Cache.js";
|
|
84
|
+
export * from "./loaders/CompressedTextureLoader.js";
|
|
85
|
+
export * from "./loaders/CubeTextureLoader.js";
|
|
86
|
+
export * from "./loaders/DataTextureLoader.js";
|
|
87
|
+
export * from "./loaders/FileLoader.js";
|
|
88
|
+
export * from "./loaders/ImageBitmapLoader.js";
|
|
89
|
+
export * from "./loaders/ImageLoader.js";
|
|
90
|
+
export * from "./loaders/Loader.js";
|
|
91
|
+
export * from "./loaders/LoaderUtils.js";
|
|
92
|
+
export * from "./loaders/LoadingManager.js";
|
|
93
|
+
export * from "./loaders/MaterialLoader.js";
|
|
94
|
+
export * from "./loaders/ObjectLoader.js";
|
|
95
|
+
export * from "./loaders/TextureLoader.js";
|
|
96
|
+
export * from "./materials/Materials.js";
|
|
97
|
+
export * from "./math/Box2.js";
|
|
98
|
+
export * from "./math/Box3.js";
|
|
99
|
+
export * from "./math/Color.js";
|
|
100
|
+
export { ColorManagement, ColorSpaceDefinition } from "./math/ColorManagement.js";
|
|
101
|
+
export * from "./math/Cylindrical.js";
|
|
102
|
+
export * from "./math/Euler.js";
|
|
103
|
+
export * from "./math/Frustum.js";
|
|
104
|
+
export * from "./math/Interpolant.js";
|
|
105
|
+
export * from "./math/interpolants/CubicInterpolant.js";
|
|
106
|
+
export * from "./math/interpolants/DiscreteInterpolant.js";
|
|
107
|
+
export * from "./math/interpolants/LinearInterpolant.js";
|
|
108
|
+
export * from "./math/interpolants/QuaternionLinearInterpolant.js";
|
|
109
|
+
export * from "./math/Line3.js";
|
|
110
|
+
export { MathUtils } from "./math/MathUtils.js";
|
|
111
|
+
export * from "./math/Matrix2.js";
|
|
112
|
+
export * from "./math/Matrix3.js";
|
|
113
|
+
export * from "./math/Matrix4.js";
|
|
114
|
+
export * from "./math/Plane.js";
|
|
115
|
+
export * from "./math/Quaternion.js";
|
|
116
|
+
export * from "./math/Ray.js";
|
|
117
|
+
export * from "./math/Sphere.js";
|
|
118
|
+
export * from "./math/Spherical.js";
|
|
119
|
+
export * from "./math/SphericalHarmonics3.js";
|
|
120
|
+
export * from "./math/Triangle.js";
|
|
121
|
+
export * from "./math/Vector2.js";
|
|
122
|
+
export * from "./math/Vector3.js";
|
|
123
|
+
export * from "./math/Vector4.js";
|
|
124
|
+
export * from "./objects/BatchedMesh.js";
|
|
125
|
+
export * from "./objects/Bone.js";
|
|
126
|
+
export * from "./objects/Group.js";
|
|
127
|
+
export * from "./objects/InstancedMesh.js";
|
|
128
|
+
export * from "./objects/Line.js";
|
|
129
|
+
export * from "./objects/LineLoop.js";
|
|
130
|
+
export * from "./objects/LineSegments.js";
|
|
131
|
+
export * from "./objects/LOD.js";
|
|
132
|
+
export * from "./objects/Mesh.js";
|
|
133
|
+
export * from "./objects/Points.js";
|
|
134
|
+
export * from "./objects/Skeleton.js";
|
|
135
|
+
export * from "./objects/SkinnedMesh.js";
|
|
136
|
+
export * from "./objects/Sprite.js";
|
|
137
|
+
export * from "./renderers/WebGL3DRenderTarget.js";
|
|
138
|
+
export * from "./renderers/WebGLArrayRenderTarget.js";
|
|
139
|
+
export * from "./renderers/WebGLCubeRenderTarget.js";
|
|
140
|
+
export * from "./renderers/WebGLRenderTarget.js";
|
|
141
|
+
export * from "./scenes/Fog.js";
|
|
142
|
+
export * from "./scenes/FogExp2.js";
|
|
143
|
+
export * from "./scenes/Scene.js";
|
|
144
|
+
export * from "./textures/CanvasTexture.js";
|
|
145
|
+
export * from "./textures/CompressedArrayTexture.js";
|
|
146
|
+
export * from "./textures/CompressedCubeTexture.js";
|
|
147
|
+
export * from "./textures/CompressedTexture.js";
|
|
148
|
+
export * from "./textures/CubeTexture.js";
|
|
149
|
+
export * from "./textures/Data3DTexture.js";
|
|
150
|
+
export * from "./textures/DataArrayTexture.js";
|
|
151
|
+
export * from "./textures/DataTexture.js";
|
|
152
|
+
export * from "./textures/DepthTexture.js";
|
|
153
|
+
export * from "./textures/FramebufferTexture.js";
|
|
154
|
+
export * from "./textures/Source.js";
|
|
155
|
+
export * from "./textures/Texture.js";
|
|
156
|
+
export * from "./textures/VideoTexture.js";
|
|
157
|
+
export * from "./Three.Legacy.js";
|
|
158
|
+
export { createCanvasElement } from "./utils.js";
|