@types/three 0.143.0 → 0.144.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/examples/jsm/controls/FirstPersonControls.d.ts +4 -1
- three/examples/jsm/csm/CSM.d.ts +1 -1
- three/examples/jsm/environments/RoomEnvironment.d.ts +1 -0
- three/examples/jsm/interactive/SelectionHelper.d.ts +1 -3
- three/examples/jsm/libs/stats.module.d.ts +1 -1
- three/examples/jsm/loaders/TIFFLoader.d.ts +16 -0
- three/examples/jsm/materials/MeshGouraudMaterial.d.ts +17 -0
- three/examples/jsm/math/ColorConverter.d.ts +0 -2
- three/examples/jsm/misc/GPUComputationRenderer.d.ts +1 -0
- three/examples/jsm/misc/ProgressiveLightMap.d.ts +1 -2
- three/examples/jsm/misc/Volume.d.ts +1 -1
- three/examples/jsm/modifiers/CurveModifier.d.ts +6 -6
- three/examples/jsm/nodes/Nodes.d.ts +216 -0
- three/examples/jsm/nodes/accessors/BufferNode.d.ts +11 -0
- three/examples/jsm/nodes/accessors/CameraNode.d.ts +12 -0
- three/examples/jsm/nodes/accessors/CubeTextureNode.d.ts +11 -0
- three/examples/jsm/nodes/accessors/InstanceNode.d.ts +9 -0
- three/examples/jsm/nodes/accessors/MaterialNode.d.ts +23 -0
- three/examples/jsm/nodes/accessors/MaterialReferenceNode.d.ts +6 -0
- three/examples/jsm/nodes/accessors/ModelNode.d.ts +9 -0
- three/examples/jsm/nodes/accessors/ModelViewProjectionNode.d.ts +6 -0
- three/examples/jsm/nodes/accessors/NormalNode.d.ts +17 -0
- three/examples/jsm/nodes/accessors/Object3DNode.d.ts +22 -0
- three/examples/jsm/nodes/accessors/PointUVNode.d.ts +7 -0
- three/examples/jsm/nodes/accessors/PositionNode.d.ts +19 -0
- three/examples/jsm/nodes/accessors/ReferenceNode.d.ts +13 -0
- three/examples/jsm/nodes/accessors/ReflectVectorNode.d.ts +8 -0
- three/examples/jsm/nodes/accessors/SkinningNode.d.ts +13 -0
- three/examples/jsm/nodes/accessors/StorageBufferNode.d.ts +6 -0
- three/examples/jsm/nodes/accessors/TextureNode.d.ts +12 -0
- three/examples/jsm/nodes/accessors/UVNode.d.ts +8 -0
- three/examples/jsm/nodes/accessors/UserDataNode.d.ts +7 -0
- three/examples/jsm/nodes/core/ArrayUniformNode.d.ts +8 -0
- three/examples/jsm/nodes/core/AttributeNode.d.ts +9 -0
- three/examples/jsm/nodes/core/BypassNode.d.ts +9 -0
- three/examples/jsm/nodes/core/CodeNode.d.ts +16 -0
- three/examples/jsm/nodes/core/ConstNode.d.ts +10 -0
- three/examples/jsm/nodes/core/ContextNode.d.ts +10 -0
- three/examples/jsm/nodes/core/ExpressionNode.d.ts +7 -0
- three/examples/jsm/nodes/core/FunctionCallNode.d.ts +13 -0
- three/examples/jsm/nodes/core/FunctionNode.d.ts +17 -0
- three/examples/jsm/nodes/core/InputNode.d.ts +12 -0
- three/examples/jsm/nodes/core/InstanceIndexNode.d.ts +6 -0
- three/examples/jsm/nodes/core/Node.d.ts +31 -0
- three/examples/jsm/nodes/core/NodeAttribute.d.ts +6 -0
- three/examples/jsm/nodes/core/NodeBuilder.d.ts +134 -0
- three/examples/jsm/nodes/core/NodeCode.d.ts +4 -0
- three/examples/jsm/nodes/core/NodeFrame.d.ts +19 -0
- three/examples/jsm/nodes/core/NodeFunction.d.ts +13 -0
- three/examples/jsm/nodes/core/NodeFunctionInput.d.ts +7 -0
- three/examples/jsm/nodes/core/NodeKeywords.d.ts +14 -0
- three/examples/jsm/nodes/core/NodeParser.d.ts +5 -0
- three/examples/jsm/nodes/core/NodeUniform.d.ts +13 -0
- three/examples/jsm/nodes/core/NodeUtils.d.ts +7 -0
- three/examples/jsm/nodes/core/NodeVar.d.ts +6 -0
- three/examples/jsm/nodes/core/NodeVary.d.ts +6 -0
- three/examples/jsm/nodes/core/PropertyNode.d.ts +6 -0
- three/examples/jsm/nodes/core/TempNode.d.ts +8 -0
- three/examples/jsm/nodes/core/UniformNode.d.ts +10 -0
- three/examples/jsm/nodes/core/VarNode.d.ts +16 -0
- three/examples/jsm/nodes/core/VaryNode.d.ts +8 -0
- three/examples/jsm/nodes/core/constants.d.ts +77 -0
- three/examples/jsm/nodes/display/ColorAdjustmentNode.d.ts +20 -0
- three/examples/jsm/nodes/display/ColorSpaceNode.d.ts +15 -0
- three/examples/jsm/nodes/display/FrontFacingNode.d.ts +6 -0
- three/examples/jsm/nodes/display/NormalMapNode.d.ts +12 -0
- three/examples/jsm/nodes/display/ToneMappingNode.d.ts +14 -0
- three/examples/jsm/nodes/fog/FogNode.d.ts +10 -0
- three/examples/jsm/nodes/fog/FogRangeNode.d.ts +10 -0
- three/examples/jsm/nodes/functions/BSDF/BRDF_GGX.d.ts +6 -0
- three/examples/jsm/nodes/functions/BSDF/BRDF_Lambert.d.ts +6 -0
- three/examples/jsm/nodes/functions/BSDF/DFGApprox.d.ts +10 -0
- three/examples/jsm/nodes/functions/BSDF/D_GGX.d.ts +9 -0
- three/examples/jsm/nodes/functions/BSDF/F_Schlick.d.ts +6 -0
- three/examples/jsm/nodes/functions/BSDF/V_GGX_SmithCorrelated.d.ts +6 -0
- three/examples/jsm/nodes/functions/PhysicalLightingModel.d.ts +11 -0
- three/examples/jsm/nodes/functions/light/getDistanceAttenuation.d.ts +5 -0
- three/examples/jsm/nodes/functions/material/getGeometryRoughness.d.ts +5 -0
- three/examples/jsm/nodes/functions/material/getRoughness.d.ts +6 -0
- three/examples/jsm/nodes/geometry/RangeNode.d.ts +12 -0
- three/examples/jsm/nodes/gpgpu/ComputeNode.d.ts +11 -0
- three/examples/jsm/nodes/lighting/AONode.d.ts +8 -0
- three/examples/jsm/nodes/lighting/AnalyticLightNode.d.ts +10 -0
- three/examples/jsm/nodes/lighting/EnvironmentNode.d.ts +8 -0
- three/examples/jsm/nodes/lighting/HemisphereLightNode.d.ts +13 -0
- three/examples/jsm/nodes/lighting/LightingContextNode.d.ts +15 -0
- three/examples/jsm/nodes/lighting/LightingNode.d.ts +5 -0
- three/examples/jsm/nodes/lighting/LightsNode.d.ts +19 -0
- three/examples/jsm/nodes/lighting/PunctualLightNode.d.ts +12 -0
- three/examples/jsm/nodes/loaders/NodeLoader.d.ts +21 -0
- three/examples/jsm/nodes/loaders/NodeMaterialLoader.d.ts +8 -0
- three/examples/jsm/nodes/loaders/NodeObjectLoader.d.ts +11 -0
- three/examples/jsm/nodes/materials/LineBasicNodeMaterial.d.ts +16 -0
- three/examples/jsm/nodes/materials/Materials.d.ts +17 -0
- three/examples/jsm/nodes/materials/MeshBasicNodeMaterial.d.ts +19 -0
- three/examples/jsm/nodes/materials/MeshPhysicalNodeMaterial.d.ts +22 -0
- three/examples/jsm/nodes/materials/MeshStandardNodeMaterial.d.ts +27 -0
- three/examples/jsm/nodes/materials/NodeMaterial.d.ts +22 -0
- three/examples/jsm/nodes/materials/PointsNodeMaterial.d.ts +15 -0
- three/examples/jsm/nodes/materials/SpriteNodeMaterial.d.ts +23 -0
- three/examples/jsm/nodes/materialx/functions/lib/mx_hsv.d.ts +4 -0
- three/examples/jsm/nodes/materialx/functions/lib/mx_noise.d.ts +6 -0
- three/examples/jsm/nodes/math/CondNode.d.ts +9 -0
- three/examples/jsm/nodes/math/MathNode.d.ts +116 -0
- three/examples/jsm/nodes/math/OperatorNode.d.ts +31 -0
- three/examples/jsm/nodes/procedural/CheckerNode.d.ts +6 -0
- three/examples/jsm/nodes/shadernode/ShaderNode.d.ts +157 -0
- three/examples/jsm/nodes/shadernode/ShaderNodeBaseElements.d.ts +285 -0
- three/examples/jsm/nodes/shadernode/ShaderNodeElements.d.ts +128 -0
- three/examples/jsm/nodes/utils/ArrayElementNode.d.ts +9 -0
- three/examples/jsm/nodes/utils/ConvertNode.d.ts +8 -0
- three/examples/jsm/nodes/utils/JoinNode.d.ts +10 -0
- three/examples/jsm/nodes/utils/MatcapUVNode.d.ts +5 -0
- three/examples/jsm/nodes/utils/MaxMipLevelNode.d.ts +7 -0
- three/examples/jsm/nodes/utils/OscNode.d.ts +19 -0
- three/examples/jsm/nodes/utils/RotateUVNode.d.ts +10 -0
- three/examples/jsm/nodes/utils/SplitNode.d.ts +16 -0
- three/examples/jsm/nodes/utils/SpriteSheetUVNode.d.ts +9 -0
- three/examples/jsm/nodes/utils/TimerNode.d.ts +14 -0
- three/examples/jsm/objects/ReflectorForSSRPass.d.ts +4 -4
- three/examples/jsm/postprocessing/SSRPass.d.ts +3 -3
- three/examples/jsm/renderers/webgl/nodes/SlotNode.d.ts +17 -0
- three/examples/jsm/renderers/webgl/nodes/WebGLNodeBuilder.d.ts +56 -0
- three/examples/jsm/renderers/webgl/nodes/WebGLNodes.d.ts +3 -0
- three/examples/jsm/shaders/AfterimageShader.d.ts +4 -4
- three/examples/jsm/shaders/BleachBypassShader.d.ts +3 -3
- three/examples/jsm/shaders/BlendShader.d.ts +5 -5
- three/examples/jsm/shaders/BokehShader.d.ts +9 -9
- three/examples/jsm/shaders/BokehShader2.d.ts +26 -26
- three/examples/jsm/shaders/BrightnessContrastShader.d.ts +4 -4
- three/examples/jsm/shaders/ColorCorrectionShader.d.ts +5 -5
- three/examples/jsm/shaders/ColorifyShader.d.ts +3 -3
- three/examples/jsm/shaders/ConvolutionShader.d.ts +4 -4
- three/examples/jsm/shaders/CopyShader.d.ts +3 -3
- three/examples/jsm/shaders/DOFMipMapShader.d.ts +5 -5
- three/examples/jsm/shaders/DepthLimitedBlurShader.d.ts +9 -9
- three/examples/jsm/shaders/DigitalGlitch.d.ts +12 -12
- three/examples/jsm/shaders/DotScreenShader.d.ts +6 -6
- three/examples/jsm/shaders/FXAAShader.d.ts +3 -3
- three/examples/jsm/shaders/FilmShader.d.ts +7 -7
- three/examples/jsm/shaders/FocusShader.d.ts +6 -6
- three/examples/jsm/shaders/FreiChenShader.d.ts +3 -3
- three/examples/jsm/shaders/GammaCorrectionShader.d.ts +2 -2
- three/examples/jsm/shaders/GodRaysShader.d.ts +12 -12
- three/examples/jsm/shaders/HalftoneShader.d.ts +14 -14
- three/examples/jsm/shaders/HorizontalBlurShader.d.ts +3 -3
- three/examples/jsm/shaders/HorizontalTiltShiftShader.d.ts +4 -4
- three/examples/jsm/shaders/HueSaturationShader.d.ts +4 -4
- three/examples/jsm/shaders/KaleidoShader.d.ts +4 -4
- three/examples/jsm/shaders/LuminosityHighPassShader.d.ts +6 -6
- three/examples/jsm/shaders/LuminosityShader.d.ts +2 -2
- three/examples/jsm/shaders/MirrorShader.d.ts +3 -3
- three/examples/jsm/shaders/NormalMapShader.d.ts +5 -5
- three/examples/jsm/shaders/PixelShader.d.ts +4 -4
- three/examples/jsm/shaders/RGBShiftShader.d.ts +4 -4
- three/examples/jsm/shaders/SAOShader.d.ts +15 -15
- three/examples/jsm/shaders/SMAAShader.d.ts +10 -10
- three/examples/jsm/shaders/SSAOShader.d.ts +19 -19
- three/examples/jsm/shaders/SepiaShader.d.ts +3 -3
- three/examples/jsm/shaders/SobelOperatorShader.d.ts +3 -3
- three/examples/jsm/shaders/SubsurfaceScatteringShader.d.ts +30 -30
- three/examples/jsm/shaders/TechnicolorShader.d.ts +2 -2
- three/examples/jsm/shaders/ToneMapShader.d.ts +7 -7
- three/examples/jsm/shaders/ToonShader.d.ts +26 -26
- three/examples/jsm/shaders/TriangleBlurShader.d.ts +3 -3
- three/examples/jsm/shaders/UnpackDepthRGBAShader.d.ts +3 -3
- three/examples/jsm/shaders/VerticalBlurShader.d.ts +3 -3
- three/examples/jsm/shaders/VerticalTiltShiftShader.d.ts +4 -4
- three/examples/jsm/shaders/VignetteShader.d.ts +4 -4
- three/examples/jsm/shaders/VolumeShader.d.ts +7 -7
- three/examples/jsm/shaders/WaterRefractionShader.d.ts +6 -6
- three/examples/jsm/utils/CameraUtils.d.ts +1 -1
- three/index.d.ts +2 -2
- three/package.json +3 -3
- three/src/Three.d.ts +1 -1
- three/src/constants.d.ts +0 -5
- three/src/core/BufferAttribute.d.ts +0 -4
- three/src/core/BufferGeometry.d.ts +0 -1
- three/src/core/Object3D.d.ts +2 -1
- three/src/extras/core/ShapePath.d.ts +1 -1
- three/src/geometries/BoxGeometry.d.ts +0 -2
- three/src/geometries/CapsuleGeometry.d.ts +0 -2
- three/src/geometries/CircleGeometry.d.ts +0 -2
- three/src/geometries/ConeGeometry.d.ts +0 -2
- three/src/geometries/CylinderGeometry.d.ts +0 -2
- three/src/geometries/DodecahedronGeometry.d.ts +0 -2
- three/src/geometries/ExtrudeGeometry.d.ts +0 -2
- three/src/geometries/IcosahedronGeometry.d.ts +0 -2
- three/src/geometries/LatheGeometry.d.ts +0 -2
- three/src/geometries/OctahedronGeometry.d.ts +0 -2
- three/src/geometries/PlaneGeometry.d.ts +0 -2
- three/src/geometries/PolyhedronGeometry.d.ts +0 -2
- three/src/geometries/RingGeometry.d.ts +0 -2
- three/src/geometries/ShapeGeometry.d.ts +0 -2
- three/src/geometries/SphereGeometry.d.ts +0 -2
- three/src/geometries/TetrahedronGeometry.d.ts +0 -2
- three/src/geometries/TorusGeometry.d.ts +0 -2
- three/src/geometries/TorusKnotGeometry.d.ts +0 -2
- three/src/geometries/TubeGeometry.d.ts +0 -2
- three/src/materials/LineBasicMaterial.d.ts +7 -0
- three/src/materials/MeshLambertMaterial.d.ts +52 -1
- three/src/materials/MeshPhysicalMaterial.d.ts +5 -0
- three/src/materials/ShaderMaterial.d.ts +1 -1
- three/src/math/Quaternion.d.ts +0 -5
- three/src/renderers/shaders/UniformsUtils.d.ts +0 -1
three/src/constants.d.ts
CHANGED
|
@@ -39,11 +39,6 @@ export const FrontSide: Side;
|
|
|
39
39
|
export const BackSide: Side;
|
|
40
40
|
export const DoubleSide: Side;
|
|
41
41
|
|
|
42
|
-
// shading
|
|
43
|
-
export enum Shading {}
|
|
44
|
-
export const FlatShading: Shading;
|
|
45
|
-
export const SmoothShading: Shading;
|
|
46
|
-
|
|
47
42
|
// blending modes
|
|
48
43
|
export enum Blending {}
|
|
49
44
|
export const NoBlending: Blending;
|
|
@@ -51,10 +51,6 @@ export class BufferAttribute {
|
|
|
51
51
|
copy(source: BufferAttribute): this;
|
|
52
52
|
copyAt(index1: number, attribute: BufferAttribute, index2: number): this;
|
|
53
53
|
copyArray(array: ArrayLike<number>): this;
|
|
54
|
-
copyColorsArray(colors: Array<{ r: number; g: number; b: number }>): this;
|
|
55
|
-
copyVector2sArray(vectors: Array<{ x: number; y: number }>): this;
|
|
56
|
-
copyVector3sArray(vectors: Array<{ x: number; y: number; z: number }>): this;
|
|
57
|
-
copyVector4sArray(vectors: Array<{ x: number; y: number; z: number; w: number }>): this;
|
|
58
54
|
applyMatrix3(m: Matrix3): this;
|
|
59
55
|
applyMatrix4(m: Matrix4): this;
|
|
60
56
|
applyNormalMatrix(m: Matrix3): this;
|
three/src/core/Object3D.d.ts
CHANGED
|
@@ -324,7 +324,8 @@ export class Object3D<E extends BaseEvent = Event> extends EventDispatcher<E> {
|
|
|
324
324
|
* This method does not support objects having non-uniformly-scaled parent(s).
|
|
325
325
|
* @param vector A world vector to look at.
|
|
326
326
|
*/
|
|
327
|
-
lookAt(vector: Vector3
|
|
327
|
+
lookAt(vector: Vector3): void;
|
|
328
|
+
lookAt(x: number, y: number, z: number): void;
|
|
328
329
|
|
|
329
330
|
/**
|
|
330
331
|
* Adds object as child of this object.
|
|
@@ -30,5 +30,5 @@ export class ShapePath {
|
|
|
30
30
|
quadraticCurveTo(aCPx: number, aCPy: number, aX: number, aY: number): this;
|
|
31
31
|
bezierCurveTo(aCP1x: number, aCP1y: number, aCP2x: number, aCP2y: number, aX: number, aY: number): this;
|
|
32
32
|
splineThru(pts: Vector2[]): this;
|
|
33
|
-
toShapes(isCCW: boolean
|
|
33
|
+
toShapes(isCCW: boolean): Shape[];
|
|
34
34
|
}
|
|
@@ -4,6 +4,7 @@ import { MaterialParameters, Material } from './Material';
|
|
|
4
4
|
|
|
5
5
|
export interface LineBasicMaterialParameters extends MaterialParameters {
|
|
6
6
|
color?: ColorRepresentation | undefined;
|
|
7
|
+
fog?: boolean | undefined;
|
|
7
8
|
linewidth?: number | undefined;
|
|
8
9
|
linecap?: string | undefined;
|
|
9
10
|
linejoin?: string | undefined;
|
|
@@ -22,6 +23,12 @@ export class LineBasicMaterial extends Material {
|
|
|
22
23
|
*/
|
|
23
24
|
color: Color;
|
|
24
25
|
|
|
26
|
+
/**
|
|
27
|
+
* Whether the material is affected by fog. Default is true.
|
|
28
|
+
* @default true
|
|
29
|
+
*/
|
|
30
|
+
fog: boolean;
|
|
31
|
+
|
|
25
32
|
/**
|
|
26
33
|
* @default 1
|
|
27
34
|
*/
|
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
import { Color } from './../math/Color';
|
|
2
2
|
import { Texture } from './../textures/Texture';
|
|
3
3
|
import { MaterialParameters, Material } from './Material';
|
|
4
|
-
import { Combine } from '../constants';
|
|
4
|
+
import { Combine, NormalMapTypes } from '../constants';
|
|
5
5
|
import { ColorRepresentation } from '../utils';
|
|
6
|
+
import { Vector2 } from '../Three';
|
|
6
7
|
|
|
7
8
|
export interface MeshLambertMaterialParameters extends MaterialParameters {
|
|
9
|
+
bumpMap?: Texture | undefined;
|
|
10
|
+
bumpScale?: number | undefined;
|
|
8
11
|
color?: ColorRepresentation | undefined;
|
|
12
|
+
displacementMap?: Texture | undefined;
|
|
13
|
+
displacementScale?: number | undefined;
|
|
14
|
+
displacementBias?: number | undefined;
|
|
9
15
|
emissive?: ColorRepresentation | undefined;
|
|
10
16
|
emissiveIntensity?: number | undefined;
|
|
11
17
|
emissiveMap?: Texture | null | undefined;
|
|
18
|
+
flatShading?: boolean | undefined;
|
|
12
19
|
map?: Texture | null | undefined;
|
|
13
20
|
lightMap?: Texture | null | undefined;
|
|
14
21
|
lightMapIntensity?: number | undefined;
|
|
22
|
+
normalMap?: Texture | undefined;
|
|
23
|
+
normalScale?: Vector2 | undefined;
|
|
15
24
|
aoMap?: Texture | null | undefined;
|
|
16
25
|
aoMapIntensity?: number | undefined;
|
|
17
26
|
specularMap?: Texture | null | undefined;
|
|
@@ -40,6 +49,31 @@ export class MeshLambertMaterial extends Material {
|
|
|
40
49
|
*/
|
|
41
50
|
color: Color;
|
|
42
51
|
|
|
52
|
+
/**
|
|
53
|
+
* @default null
|
|
54
|
+
*/
|
|
55
|
+
bumpMap: Texture | null;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @default 1
|
|
59
|
+
*/
|
|
60
|
+
bumpScale: number;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @default null
|
|
64
|
+
*/
|
|
65
|
+
displacementMap: Texture | null;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @default 1
|
|
69
|
+
*/
|
|
70
|
+
dispalcementScale: number;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @default 0
|
|
74
|
+
*/
|
|
75
|
+
displacementBias: number;
|
|
76
|
+
|
|
43
77
|
/**
|
|
44
78
|
* @default new THREE.Color( 0x000000 )
|
|
45
79
|
*/
|
|
@@ -55,6 +89,11 @@ export class MeshLambertMaterial extends Material {
|
|
|
55
89
|
*/
|
|
56
90
|
emissiveMap: Texture | null;
|
|
57
91
|
|
|
92
|
+
/**
|
|
93
|
+
* @default false
|
|
94
|
+
*/
|
|
95
|
+
flatShading: boolean;
|
|
96
|
+
|
|
58
97
|
/**
|
|
59
98
|
* @default null
|
|
60
99
|
*/
|
|
@@ -70,6 +109,18 @@ export class MeshLambertMaterial extends Material {
|
|
|
70
109
|
*/
|
|
71
110
|
lightMapIntensity: number;
|
|
72
111
|
|
|
112
|
+
/**
|
|
113
|
+
* @default null
|
|
114
|
+
*/
|
|
115
|
+
normalMap: Texture | null;
|
|
116
|
+
|
|
117
|
+
normalMapType: NormalMapTypes;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* @default new THREE.Vector2( 1, 1 )
|
|
121
|
+
*/
|
|
122
|
+
normalScale: Vector2;
|
|
123
|
+
|
|
73
124
|
/**
|
|
74
125
|
* @default null
|
|
75
126
|
*/
|
|
@@ -11,7 +11,7 @@ export interface ShaderMaterialParameters extends MaterialParameters {
|
|
|
11
11
|
wireframeLinewidth?: number | undefined;
|
|
12
12
|
lights?: boolean | undefined;
|
|
13
13
|
clipping?: boolean | undefined;
|
|
14
|
-
|
|
14
|
+
fog?: boolean | undefined;
|
|
15
15
|
extensions?:
|
|
16
16
|
| {
|
|
17
17
|
derivatives?: boolean | undefined;
|
three/src/math/Quaternion.d.ts
CHANGED
|
@@ -168,11 +168,6 @@ export class Quaternion {
|
|
|
168
168
|
*/
|
|
169
169
|
multiplyVector3(v: any): any;
|
|
170
170
|
|
|
171
|
-
/**
|
|
172
|
-
* @deprecated Use {@link Quaternion#invert .invert()} instead.
|
|
173
|
-
*/
|
|
174
|
-
inverse(): Quaternion;
|
|
175
|
-
|
|
176
171
|
random(): Quaternion;
|
|
177
172
|
|
|
178
173
|
[Symbol.iterator](): Generator<number, void>;
|