angular-three-soba 2.13.0 → 2.14.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.
- package/abstractions/lib/catmull-rom-line.d.ts +189 -189
- package/abstractions/lib/edges.d.ts +213 -213
- package/abstractions/lib/grid.d.ts +39 -39
- package/abstractions/lib/line.d.ts +1 -1
- package/abstractions/lib/rounded-box.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +41 -41
- package/abstractions/lib/text.d.ts +2 -2
- package/cameras/lib/orthographic-camera.d.ts +1 -1
- package/controls/lib/camera-controls.d.ts +1 -1
- package/controls/lib/orbit-controls.d.ts +1 -1
- package/esm2022/controls/lib/orbit-controls.mjs +1 -7
- package/fesm2022/angular-three-soba-controls.mjs +0 -6
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/gizmos/lib/pivot-controls/axis-arrow.d.ts +1 -1
- package/gizmos/lib/pivot-controls/axis-rotator.d.ts +1 -1
- package/gizmos/lib/pivot-controls/pivot-controls.d.ts +1 -1
- package/gizmos/lib/pivot-controls/plane-slider.d.ts +1 -1
- package/gizmos/lib/pivot-controls/scaling-sphere.d.ts +1 -1
- package/gizmos/lib/transform-controls.d.ts +2 -2
- package/materials/lib/custom-shader-material.d.ts +2 -2
- package/materials/lib/mesh-portal-material.d.ts +10 -10
- package/materials/lib/mesh-refraction-material.d.ts +3 -3
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/computed-attribute.d.ts +5 -5
- package/misc/lib/decal.d.ts +1 -1
- package/misc/lib/html/html.d.ts +1 -1
- package/misc/lib/sampler.d.ts +1 -1
- package/package.json +10 -10
- package/performances/lib/instances/instances.d.ts +10 -10
- package/performances/lib/points/points.d.ts +22 -22
- package/performances/lib/segments/segments.d.ts +4 -4
- package/shaders/lib/mesh-refraction-material.d.ts +2 -2
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/sky.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +2 -2
- package/staging/lib/stage.d.ts +5 -5
|
@@ -21,26 +21,23 @@ export declare class NgtsCatmullRomLine {
|
|
|
21
21
|
segmentedPoints: import("@angular/core").Signal<Vector3[]>;
|
|
22
22
|
private interpolatedVertexColors;
|
|
23
23
|
lineOptions: import("@angular/core").Signal<{
|
|
24
|
-
vertexColors: (
|
|
24
|
+
vertexColors: ([number, number, number] | import("three").ColorRepresentation | [number, number, number, number])[] | undefined;
|
|
25
|
+
position?: import("angular-three").NgtVector3 | undefined;
|
|
26
|
+
up?: import("angular-three").NgtVector3 | undefined;
|
|
27
|
+
scale?: import("angular-three").NgtVector3 | undefined;
|
|
28
|
+
rotation?: import("angular-three").NgtEuler | undefined;
|
|
29
|
+
matrix?: import("angular-three").NgtMatrix4 | undefined;
|
|
30
|
+
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
31
|
+
layers?: import("angular-three").NgtLayers | undefined;
|
|
32
|
+
dispose?: (() => void) | null | undefined;
|
|
33
|
+
raycast?: ((raycaster: import("three").Raycaster, intersects: import("three").Intersection[]) => void) | null | undefined;
|
|
25
34
|
addEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
26
35
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & any;
|
|
27
36
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
28
|
-
readonly id?: number | undefined;
|
|
29
|
-
uuid?: string | undefined;
|
|
30
|
-
name?: string | undefined;
|
|
31
|
-
readonly type?: string | undefined;
|
|
32
|
-
matrixAutoUpdate?: boolean | undefined;
|
|
33
|
-
userData?: Record<string, any> | undefined;
|
|
34
|
-
updateMatrix?: (() => void) | undefined;
|
|
35
|
-
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
36
|
-
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
37
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
38
|
-
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
39
|
-
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
40
37
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
41
38
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
42
|
-
clear?: (() => import("three-stdlib").Line2) | undefined;
|
|
43
39
|
readonly isMesh?: true | undefined;
|
|
40
|
+
readonly type?: string | undefined;
|
|
44
41
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
45
42
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
46
43
|
morphTargetInfluences?: number[] | undefined;
|
|
@@ -49,12 +46,17 @@ export declare class NgtsCatmullRomLine {
|
|
|
49
46
|
} | undefined;
|
|
50
47
|
updateMorphTargets?: (() => void) | undefined;
|
|
51
48
|
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
49
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
52
50
|
readonly isObject3D?: true | undefined;
|
|
51
|
+
readonly id?: number | undefined;
|
|
52
|
+
uuid?: string | undefined;
|
|
53
|
+
name?: string | undefined;
|
|
53
54
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
54
55
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
55
56
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
56
57
|
readonly normalMatrix?: import("three").Matrix3 | undefined;
|
|
57
58
|
matrixWorld?: import("three").Matrix4 | undefined;
|
|
59
|
+
matrixAutoUpdate?: boolean | undefined;
|
|
58
60
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
59
61
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
60
62
|
visible?: boolean | undefined;
|
|
@@ -63,6 +65,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
63
65
|
frustumCulled?: boolean | undefined;
|
|
64
66
|
renderOrder?: number | undefined;
|
|
65
67
|
animations?: import("three").AnimationClip[] | undefined;
|
|
68
|
+
userData?: Record<string, any> | undefined;
|
|
66
69
|
customDepthMaterial?: import("three").Material | undefined;
|
|
67
70
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
68
71
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -93,6 +96,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
93
96
|
add?: ((...object: import("three").Object3D[]) => import("three-stdlib").Line2) | undefined;
|
|
94
97
|
remove?: ((...object: import("three").Object3D[]) => import("three-stdlib").Line2) | undefined;
|
|
95
98
|
removeFromParent?: (() => import("three-stdlib").Line2) | undefined;
|
|
99
|
+
clear?: (() => import("three-stdlib").Line2) | undefined;
|
|
96
100
|
getObjectById?: ((id: number) => import("three").Object3D | undefined) | undefined;
|
|
97
101
|
getObjectByName?: ((name: string) => import("three").Object3D | undefined) | undefined;
|
|
98
102
|
getObjectByProperty?: ((name: string, value: any) => import("three").Object3D | undefined) | undefined;
|
|
@@ -104,8 +108,13 @@ export declare class NgtsCatmullRomLine {
|
|
|
104
108
|
traverse?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
105
109
|
traverseVisible?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
106
110
|
traverseAncestors?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
111
|
+
updateMatrix?: (() => void) | undefined;
|
|
107
112
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
108
113
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
114
|
+
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
115
|
+
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
116
|
+
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
117
|
+
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
109
118
|
readonly isLine2?: true | undefined;
|
|
110
119
|
readonly isLineSegments2?: true | undefined;
|
|
111
120
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
@@ -121,65 +130,38 @@ export declare class NgtsCatmullRomLine {
|
|
|
121
130
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
122
131
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
123
132
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
133
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
134
|
+
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
135
|
+
type?: string | undefined;
|
|
136
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
124
137
|
id?: number | undefined;
|
|
125
138
|
uuid?: string | undefined;
|
|
126
139
|
name?: string | undefined;
|
|
127
|
-
|
|
140
|
+
visible?: boolean | undefined;
|
|
128
141
|
userData?: Record<string, any> | undefined;
|
|
129
|
-
|
|
130
|
-
needsUpdate?: boolean | undefined;
|
|
142
|
+
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
131
143
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
132
144
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
133
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
134
145
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
135
146
|
dispose: {};
|
|
136
147
|
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
137
148
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
138
149
|
dispose: {};
|
|
139
150
|
}[T]) => void) | undefined;
|
|
140
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
141
|
-
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
142
|
-
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
143
|
-
extensions?: {
|
|
144
|
-
clipCullDistance: boolean;
|
|
145
|
-
multiDraw: boolean;
|
|
146
|
-
} | undefined;
|
|
147
|
-
visible?: boolean | undefined;
|
|
148
|
-
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
149
151
|
color?: import("three").ColorRepresentation | undefined;
|
|
152
|
+
vertexColors?: boolean | undefined;
|
|
153
|
+
alphaToCoverage?: boolean | undefined;
|
|
150
154
|
dashed?: boolean | undefined;
|
|
151
155
|
dashScale?: number | undefined;
|
|
152
156
|
dashSize?: number | undefined;
|
|
153
157
|
dashOffset?: number | undefined;
|
|
154
158
|
gapSize?: number | undefined;
|
|
155
|
-
opacity?: number | undefined;
|
|
156
|
-
readonly isLineMaterial?: true | undefined;
|
|
157
159
|
linewidth?: number | undefined;
|
|
158
160
|
resolution?: import("three").Vector2 | undefined;
|
|
159
|
-
alphaToCoverage?: boolean | undefined;
|
|
160
|
-
worldUnits?: boolean | undefined;
|
|
161
|
-
readonly isShaderMaterial?: true | undefined;
|
|
162
|
-
defines?: {
|
|
163
|
-
[key: string]: any;
|
|
164
|
-
} | undefined;
|
|
165
|
-
uniforms?: {
|
|
166
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
167
|
-
} | undefined;
|
|
168
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
169
|
-
vertexShader?: string | undefined;
|
|
170
|
-
fragmentShader?: string | undefined;
|
|
171
161
|
wireframe?: boolean | undefined;
|
|
172
|
-
|
|
173
|
-
fog?: boolean | undefined;
|
|
174
|
-
lights?: boolean | undefined;
|
|
175
|
-
clipping?: boolean | undefined;
|
|
176
|
-
defaultAttributeValues?: any;
|
|
177
|
-
index0AttributeName?: string | undefined;
|
|
178
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
179
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
180
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
181
|
-
readonly isMaterial?: true | undefined;
|
|
162
|
+
worldUnits?: boolean | undefined;
|
|
182
163
|
alphaHash?: boolean | undefined;
|
|
164
|
+
alphaTest?: number | undefined;
|
|
183
165
|
blendAlpha?: number | undefined;
|
|
184
166
|
blendColor?: import("three").ColorRepresentation | undefined;
|
|
185
167
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -190,19 +172,16 @@ export declare class NgtsCatmullRomLine {
|
|
|
190
172
|
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
191
173
|
blendSrcAlpha?: number | null | undefined;
|
|
192
174
|
clipIntersection?: boolean | undefined;
|
|
175
|
+
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
193
176
|
clipShadows?: boolean | undefined;
|
|
194
177
|
colorWrite?: boolean | undefined;
|
|
178
|
+
defines?: {
|
|
179
|
+
[key: string]: any;
|
|
180
|
+
} | undefined;
|
|
195
181
|
depthFunc?: import("three").DepthModes | undefined;
|
|
196
182
|
depthTest?: boolean | undefined;
|
|
197
183
|
depthWrite?: boolean | undefined;
|
|
198
|
-
|
|
199
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
200
|
-
stencilRef?: number | undefined;
|
|
201
|
-
stencilWriteMask?: number | undefined;
|
|
202
|
-
stencilFuncMask?: number | undefined;
|
|
203
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
204
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
205
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
184
|
+
opacity?: number | undefined;
|
|
206
185
|
polygonOffset?: boolean | undefined;
|
|
207
186
|
polygonOffsetFactor?: number | undefined;
|
|
208
187
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -214,10 +193,40 @@ export declare class NgtsCatmullRomLine {
|
|
|
214
193
|
shadowSide?: import("three").Side | null | undefined;
|
|
215
194
|
toneMapped?: boolean | undefined;
|
|
216
195
|
transparent?: boolean | undefined;
|
|
217
|
-
|
|
218
|
-
|
|
196
|
+
stencilWrite?: boolean | undefined;
|
|
197
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
198
|
+
stencilRef?: number | undefined;
|
|
199
|
+
stencilWriteMask?: number | undefined;
|
|
200
|
+
stencilFuncMask?: number | undefined;
|
|
201
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
202
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
203
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
204
|
+
readonly isLineMaterial?: true | undefined;
|
|
205
|
+
readonly isShaderMaterial?: true | undefined;
|
|
206
|
+
uniforms?: {
|
|
207
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
208
|
+
} | undefined;
|
|
209
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
210
|
+
vertexShader?: string | undefined;
|
|
211
|
+
fragmentShader?: string | undefined;
|
|
212
|
+
wireframeLinewidth?: number | undefined;
|
|
213
|
+
fog?: boolean | undefined;
|
|
214
|
+
lights?: boolean | undefined;
|
|
215
|
+
clipping?: boolean | undefined;
|
|
216
|
+
extensions?: {
|
|
217
|
+
clipCullDistance: boolean;
|
|
218
|
+
multiDraw: boolean;
|
|
219
|
+
} | undefined;
|
|
220
|
+
defaultAttributeValues?: any;
|
|
221
|
+
index0AttributeName?: string | undefined;
|
|
222
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
223
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
224
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
225
|
+
readonly isMaterial?: true | undefined;
|
|
226
|
+
version?: number | undefined;
|
|
219
227
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
220
228
|
customProgramCacheKey?: (() => string) | undefined;
|
|
229
|
+
needsUpdate?: boolean | undefined;
|
|
221
230
|
onBuild?: ((object: import("three").Object3D, parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
222
231
|
position: import("angular-three").NgtVector3;
|
|
223
232
|
up: import("angular-three").NgtVector3;
|
|
@@ -232,22 +241,10 @@ export declare class NgtsCatmullRomLine {
|
|
|
232
241
|
removeEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
233
242
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
234
243
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & any;
|
|
235
|
-
readonly id?: number | undefined;
|
|
236
|
-
uuid?: string | undefined;
|
|
237
|
-
name?: string | undefined;
|
|
238
|
-
readonly type?: string | undefined;
|
|
239
|
-
matrixAutoUpdate?: boolean | undefined;
|
|
240
|
-
userData?: Record<string, any> | undefined;
|
|
241
|
-
updateMatrix?: (() => void) | undefined;
|
|
242
|
-
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
243
|
-
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
244
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
245
|
-
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
246
|
-
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
247
244
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
248
245
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
249
|
-
clear?: (() => import("three-stdlib").Line2) | undefined;
|
|
250
246
|
readonly isMesh?: true | undefined;
|
|
247
|
+
readonly type?: string | undefined;
|
|
251
248
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
252
249
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
253
250
|
morphTargetInfluences?: number[] | undefined;
|
|
@@ -256,12 +253,17 @@ export declare class NgtsCatmullRomLine {
|
|
|
256
253
|
} | undefined;
|
|
257
254
|
updateMorphTargets?: (() => void) | undefined;
|
|
258
255
|
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
256
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
259
257
|
readonly isObject3D?: true | undefined;
|
|
258
|
+
readonly id?: number | undefined;
|
|
259
|
+
uuid?: string | undefined;
|
|
260
|
+
name?: string | undefined;
|
|
260
261
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
261
262
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
262
263
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
263
264
|
readonly normalMatrix?: import("three").Matrix3 | undefined;
|
|
264
265
|
matrixWorld?: import("three").Matrix4 | undefined;
|
|
266
|
+
matrixAutoUpdate?: boolean | undefined;
|
|
265
267
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
266
268
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
267
269
|
visible?: boolean | undefined;
|
|
@@ -270,6 +272,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
270
272
|
frustumCulled?: boolean | undefined;
|
|
271
273
|
renderOrder?: number | undefined;
|
|
272
274
|
animations?: import("three").AnimationClip[] | undefined;
|
|
275
|
+
userData?: Record<string, any> | undefined;
|
|
273
276
|
customDepthMaterial?: import("three").Material | undefined;
|
|
274
277
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
275
278
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -300,6 +303,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
300
303
|
add?: ((...object: import("three").Object3D[]) => import("three-stdlib").Line2) | undefined;
|
|
301
304
|
remove?: ((...object: import("three").Object3D[]) => import("three-stdlib").Line2) | undefined;
|
|
302
305
|
removeFromParent?: (() => import("three-stdlib").Line2) | undefined;
|
|
306
|
+
clear?: (() => import("three-stdlib").Line2) | undefined;
|
|
303
307
|
getObjectById?: ((id: number) => import("three").Object3D | undefined) | undefined;
|
|
304
308
|
getObjectByName?: ((name: string) => import("three").Object3D | undefined) | undefined;
|
|
305
309
|
getObjectByProperty?: ((name: string, value: any) => import("three").Object3D | undefined) | undefined;
|
|
@@ -311,8 +315,13 @@ export declare class NgtsCatmullRomLine {
|
|
|
311
315
|
traverse?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
312
316
|
traverseVisible?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
313
317
|
traverseAncestors?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
318
|
+
updateMatrix?: (() => void) | undefined;
|
|
314
319
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
315
320
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
321
|
+
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
322
|
+
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
323
|
+
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
324
|
+
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
316
325
|
readonly isLine2?: true | undefined;
|
|
317
326
|
readonly isLineSegments2?: true | undefined;
|
|
318
327
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
@@ -328,65 +337,38 @@ export declare class NgtsCatmullRomLine {
|
|
|
328
337
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
329
338
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
330
339
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
340
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
341
|
+
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
342
|
+
type?: string | undefined;
|
|
343
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
331
344
|
id?: number | undefined;
|
|
332
345
|
uuid?: string | undefined;
|
|
333
346
|
name?: string | undefined;
|
|
334
|
-
|
|
347
|
+
visible?: boolean | undefined;
|
|
335
348
|
userData?: Record<string, any> | undefined;
|
|
336
|
-
|
|
337
|
-
needsUpdate?: boolean | undefined;
|
|
349
|
+
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
338
350
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
339
351
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
340
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
341
352
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
342
353
|
dispose: {};
|
|
343
354
|
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
344
355
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
345
356
|
dispose: {};
|
|
346
357
|
}[T]) => void) | undefined;
|
|
347
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
348
|
-
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
349
|
-
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
350
|
-
extensions?: {
|
|
351
|
-
clipCullDistance: boolean;
|
|
352
|
-
multiDraw: boolean;
|
|
353
|
-
} | undefined;
|
|
354
|
-
visible?: boolean | undefined;
|
|
355
|
-
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
356
358
|
color?: import("three").ColorRepresentation | undefined;
|
|
359
|
+
vertexColors?: boolean | undefined;
|
|
360
|
+
alphaToCoverage?: boolean | undefined;
|
|
357
361
|
dashed?: boolean | undefined;
|
|
358
362
|
dashScale?: number | undefined;
|
|
359
363
|
dashSize?: number | undefined;
|
|
360
364
|
dashOffset?: number | undefined;
|
|
361
365
|
gapSize?: number | undefined;
|
|
362
|
-
opacity?: number | undefined;
|
|
363
|
-
readonly isLineMaterial?: true | undefined;
|
|
364
366
|
linewidth?: number | undefined;
|
|
365
367
|
resolution?: import("three").Vector2 | undefined;
|
|
366
|
-
alphaToCoverage?: boolean | undefined;
|
|
367
|
-
worldUnits?: boolean | undefined;
|
|
368
|
-
readonly isShaderMaterial?: true | undefined;
|
|
369
|
-
defines?: {
|
|
370
|
-
[key: string]: any;
|
|
371
|
-
} | undefined;
|
|
372
|
-
uniforms?: {
|
|
373
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
374
|
-
} | undefined;
|
|
375
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
376
|
-
vertexShader?: string | undefined;
|
|
377
|
-
fragmentShader?: string | undefined;
|
|
378
368
|
wireframe?: boolean | undefined;
|
|
379
|
-
|
|
380
|
-
fog?: boolean | undefined;
|
|
381
|
-
lights?: boolean | undefined;
|
|
382
|
-
clipping?: boolean | undefined;
|
|
383
|
-
defaultAttributeValues?: any;
|
|
384
|
-
index0AttributeName?: string | undefined;
|
|
385
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
386
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
387
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
388
|
-
readonly isMaterial?: true | undefined;
|
|
369
|
+
worldUnits?: boolean | undefined;
|
|
389
370
|
alphaHash?: boolean | undefined;
|
|
371
|
+
alphaTest?: number | undefined;
|
|
390
372
|
blendAlpha?: number | undefined;
|
|
391
373
|
blendColor?: import("three").ColorRepresentation | undefined;
|
|
392
374
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -397,19 +379,16 @@ export declare class NgtsCatmullRomLine {
|
|
|
397
379
|
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
398
380
|
blendSrcAlpha?: number | null | undefined;
|
|
399
381
|
clipIntersection?: boolean | undefined;
|
|
382
|
+
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
400
383
|
clipShadows?: boolean | undefined;
|
|
401
384
|
colorWrite?: boolean | undefined;
|
|
385
|
+
defines?: {
|
|
386
|
+
[key: string]: any;
|
|
387
|
+
} | undefined;
|
|
402
388
|
depthFunc?: import("three").DepthModes | undefined;
|
|
403
389
|
depthTest?: boolean | undefined;
|
|
404
390
|
depthWrite?: boolean | undefined;
|
|
405
|
-
|
|
406
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
407
|
-
stencilRef?: number | undefined;
|
|
408
|
-
stencilWriteMask?: number | undefined;
|
|
409
|
-
stencilFuncMask?: number | undefined;
|
|
410
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
411
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
412
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
391
|
+
opacity?: number | undefined;
|
|
413
392
|
polygonOffset?: boolean | undefined;
|
|
414
393
|
polygonOffsetFactor?: number | undefined;
|
|
415
394
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -421,10 +400,40 @@ export declare class NgtsCatmullRomLine {
|
|
|
421
400
|
shadowSide?: import("three").Side | null | undefined;
|
|
422
401
|
toneMapped?: boolean | undefined;
|
|
423
402
|
transparent?: boolean | undefined;
|
|
424
|
-
|
|
425
|
-
|
|
403
|
+
stencilWrite?: boolean | undefined;
|
|
404
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
405
|
+
stencilRef?: number | undefined;
|
|
406
|
+
stencilWriteMask?: number | undefined;
|
|
407
|
+
stencilFuncMask?: number | undefined;
|
|
408
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
409
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
410
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
411
|
+
readonly isLineMaterial?: true | undefined;
|
|
412
|
+
readonly isShaderMaterial?: true | undefined;
|
|
413
|
+
uniforms?: {
|
|
414
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
415
|
+
} | undefined;
|
|
416
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
417
|
+
vertexShader?: string | undefined;
|
|
418
|
+
fragmentShader?: string | undefined;
|
|
419
|
+
wireframeLinewidth?: number | undefined;
|
|
420
|
+
fog?: boolean | undefined;
|
|
421
|
+
lights?: boolean | undefined;
|
|
422
|
+
clipping?: boolean | undefined;
|
|
423
|
+
extensions?: {
|
|
424
|
+
clipCullDistance: boolean;
|
|
425
|
+
multiDraw: boolean;
|
|
426
|
+
} | undefined;
|
|
427
|
+
defaultAttributeValues?: any;
|
|
428
|
+
index0AttributeName?: string | undefined;
|
|
429
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
430
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
431
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
432
|
+
readonly isMaterial?: true | undefined;
|
|
433
|
+
version?: number | undefined;
|
|
426
434
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
427
435
|
customProgramCacheKey?: (() => string) | undefined;
|
|
436
|
+
needsUpdate?: boolean | undefined;
|
|
428
437
|
onBuild?: ((object: import("three").Object3D, parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
429
438
|
position: import("angular-three").NgtVector3;
|
|
430
439
|
up: import("angular-three").NgtVector3;
|
|
@@ -436,42 +445,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
436
445
|
dispose: (() => void) | null;
|
|
437
446
|
raycast: import("three").Object3D["raycast"] | null;
|
|
438
447
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
439
|
-
id?: number | undefined;
|
|
440
|
-
uuid?: string | undefined;
|
|
441
|
-
name?: string | undefined;
|
|
442
|
-
format?: import("three").PixelFormat | undefined;
|
|
443
|
-
type?: string | undefined;
|
|
444
|
-
matrix?: import("angular-three").NgtMatrix4 | undefined;
|
|
445
|
-
matrixAutoUpdate?: boolean | undefined;
|
|
446
|
-
rotation?: import("angular-three").NgtEuler | undefined;
|
|
447
|
-
userData?: Record<string, any> | undefined;
|
|
448
|
-
version?: number | undefined;
|
|
449
|
-
needsUpdate?: boolean | undefined;
|
|
450
|
-
updateMatrix?: (() => void) | undefined;
|
|
451
|
-
clone?: (((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
452
|
-
copy?: (((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
453
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
454
|
-
dispose?: (() => void) | null | undefined;
|
|
455
|
-
hasEventListener?: ((<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) & (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
456
|
-
dispose: {};
|
|
457
|
-
}[T], T, import("three-stdlib").LineMaterial>) => boolean)) | undefined;
|
|
458
|
-
dispatchEvent?: ((<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) & (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
459
|
-
dispose: {};
|
|
460
|
-
}[T]) => void)) | undefined;
|
|
461
448
|
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
462
|
-
clippingPlanes?: import("three").Plane[] | undefined;
|
|
463
|
-
extensions?: {
|
|
464
|
-
clipCullDistance: boolean;
|
|
465
|
-
multiDraw: boolean;
|
|
466
|
-
} | undefined;
|
|
467
|
-
clear?: (() => import("three-stdlib").Line2) | undefined;
|
|
468
|
-
position?: import("angular-three").NgtVector3 | undefined;
|
|
469
|
-
up?: import("angular-three").NgtVector3 | undefined;
|
|
470
|
-
scale?: import("angular-three").NgtVector3 | undefined;
|
|
471
|
-
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
472
|
-
layers?: import("angular-three").NgtLayers | undefined;
|
|
473
|
-
raycast?: ((raycaster: import("three").Raycaster, intersects: import("three").Intersection[]) => void) | null | undefined;
|
|
474
449
|
isMesh?: true | undefined;
|
|
450
|
+
type?: string | undefined;
|
|
475
451
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
476
452
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
477
453
|
morphTargetInfluences?: number[] | undefined;
|
|
@@ -480,12 +456,17 @@ export declare class NgtsCatmullRomLine {
|
|
|
480
456
|
} | undefined;
|
|
481
457
|
updateMorphTargets?: (() => void) | undefined;
|
|
482
458
|
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
459
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
483
460
|
isObject3D?: true | undefined;
|
|
461
|
+
id?: number | undefined;
|
|
462
|
+
uuid?: string | undefined;
|
|
463
|
+
name?: string | undefined;
|
|
484
464
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
485
465
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
486
466
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
487
467
|
normalMatrix?: import("three").Matrix3 | undefined;
|
|
488
468
|
matrixWorld?: import("three").Matrix4 | undefined;
|
|
469
|
+
matrixAutoUpdate?: boolean | undefined;
|
|
489
470
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
490
471
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
491
472
|
visible?: boolean | undefined;
|
|
@@ -494,6 +475,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
494
475
|
frustumCulled?: boolean | undefined;
|
|
495
476
|
renderOrder?: number | undefined;
|
|
496
477
|
animations?: import("three").AnimationClip[] | undefined;
|
|
478
|
+
userData?: Record<string, any> | undefined;
|
|
497
479
|
customDepthMaterial?: import("three").Material | undefined;
|
|
498
480
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
499
481
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -524,6 +506,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
524
506
|
add?: ((...object: import("three").Object3D[]) => import("three-stdlib").Line2) | undefined;
|
|
525
507
|
remove?: ((...object: import("three").Object3D[]) => import("three-stdlib").Line2) | undefined;
|
|
526
508
|
removeFromParent?: (() => import("three-stdlib").Line2) | undefined;
|
|
509
|
+
clear?: (() => import("three-stdlib").Line2) | undefined;
|
|
527
510
|
getObjectById?: ((id: number) => import("three").Object3D | undefined) | undefined;
|
|
528
511
|
getObjectByName?: ((name: string) => import("three").Object3D | undefined) | undefined;
|
|
529
512
|
getObjectByProperty?: ((name: string, value: any) => import("three").Object3D | undefined) | undefined;
|
|
@@ -535,43 +518,30 @@ export declare class NgtsCatmullRomLine {
|
|
|
535
518
|
traverse?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
536
519
|
traverseVisible?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
537
520
|
traverseAncestors?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
|
|
521
|
+
updateMatrix?: (() => void) | undefined;
|
|
538
522
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
539
523
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
524
|
+
clone?: (((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
525
|
+
copy?: (((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
526
|
+
hasEventListener?: ((<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) & (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
527
|
+
dispose: {};
|
|
528
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean)) | undefined;
|
|
529
|
+
dispatchEvent?: ((<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) & (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
530
|
+
dispose: {};
|
|
531
|
+
}[T]) => void)) | undefined;
|
|
543
532
|
color?: import("three").ColorRepresentation | undefined;
|
|
533
|
+
alphaToCoverage?: boolean | undefined;
|
|
544
534
|
dashed?: boolean | undefined;
|
|
545
535
|
dashScale?: number | undefined;
|
|
546
536
|
dashSize?: number | undefined;
|
|
547
537
|
dashOffset?: number | undefined;
|
|
548
538
|
gapSize?: number | undefined;
|
|
549
|
-
opacity?: number | undefined;
|
|
550
|
-
isLineMaterial?: true | undefined;
|
|
551
539
|
linewidth?: number | undefined;
|
|
552
540
|
resolution?: import("three").Vector2 | undefined;
|
|
553
|
-
alphaToCoverage?: boolean | undefined;
|
|
554
|
-
worldUnits?: boolean | undefined;
|
|
555
|
-
isShaderMaterial?: true | undefined;
|
|
556
|
-
defines?: any;
|
|
557
|
-
uniforms?: {
|
|
558
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
559
|
-
} | undefined;
|
|
560
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
561
|
-
vertexShader?: string | undefined;
|
|
562
|
-
fragmentShader?: string | undefined;
|
|
563
541
|
wireframe?: boolean | undefined;
|
|
564
|
-
|
|
565
|
-
fog?: boolean | undefined;
|
|
566
|
-
lights?: boolean | undefined;
|
|
567
|
-
clipping?: boolean | undefined;
|
|
568
|
-
defaultAttributeValues?: any;
|
|
569
|
-
index0AttributeName?: string | undefined;
|
|
570
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
571
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
572
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
573
|
-
isMaterial?: true | undefined;
|
|
542
|
+
worldUnits?: boolean | undefined;
|
|
574
543
|
alphaHash?: boolean | undefined;
|
|
544
|
+
alphaTest?: number | undefined;
|
|
575
545
|
blendAlpha?: number | undefined;
|
|
576
546
|
blendColor?: import("three").ColorRepresentation | undefined;
|
|
577
547
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -582,19 +552,14 @@ export declare class NgtsCatmullRomLine {
|
|
|
582
552
|
blendSrc?: import("three").BlendingSrcFactor | import("three").BlendingDstFactor | undefined;
|
|
583
553
|
blendSrcAlpha?: number | undefined;
|
|
584
554
|
clipIntersection?: boolean | undefined;
|
|
555
|
+
clippingPlanes?: import("three").Plane[] | undefined;
|
|
585
556
|
clipShadows?: boolean | undefined;
|
|
586
557
|
colorWrite?: boolean | undefined;
|
|
558
|
+
defines?: any;
|
|
587
559
|
depthFunc?: import("three").DepthModes | undefined;
|
|
588
560
|
depthTest?: boolean | undefined;
|
|
589
561
|
depthWrite?: boolean | undefined;
|
|
590
|
-
|
|
591
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
592
|
-
stencilRef?: number | undefined;
|
|
593
|
-
stencilWriteMask?: number | undefined;
|
|
594
|
-
stencilFuncMask?: number | undefined;
|
|
595
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
596
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
597
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
562
|
+
opacity?: number | undefined;
|
|
598
563
|
polygonOffset?: boolean | undefined;
|
|
599
564
|
polygonOffsetFactor?: number | undefined;
|
|
600
565
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -606,9 +571,44 @@ export declare class NgtsCatmullRomLine {
|
|
|
606
571
|
shadowSide?: 0 | 1 | 2 | undefined;
|
|
607
572
|
toneMapped?: boolean | undefined;
|
|
608
573
|
transparent?: boolean | undefined;
|
|
609
|
-
|
|
574
|
+
format?: import("three").PixelFormat | undefined;
|
|
575
|
+
stencilWrite?: boolean | undefined;
|
|
576
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
577
|
+
stencilRef?: number | undefined;
|
|
578
|
+
stencilWriteMask?: number | undefined;
|
|
579
|
+
stencilFuncMask?: number | undefined;
|
|
580
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
581
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
582
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
583
|
+
isLine2?: true | undefined;
|
|
584
|
+
isLineSegments2?: true | undefined;
|
|
585
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
586
|
+
isLineMaterial?: true | undefined;
|
|
587
|
+
isShaderMaterial?: true | undefined;
|
|
588
|
+
uniforms?: {
|
|
589
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
590
|
+
} | undefined;
|
|
591
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
592
|
+
vertexShader?: string | undefined;
|
|
593
|
+
fragmentShader?: string | undefined;
|
|
594
|
+
wireframeLinewidth?: number | undefined;
|
|
595
|
+
fog?: boolean | undefined;
|
|
596
|
+
lights?: boolean | undefined;
|
|
597
|
+
clipping?: boolean | undefined;
|
|
598
|
+
extensions?: {
|
|
599
|
+
clipCullDistance: boolean;
|
|
600
|
+
multiDraw: boolean;
|
|
601
|
+
} | undefined;
|
|
602
|
+
defaultAttributeValues?: any;
|
|
603
|
+
index0AttributeName?: string | undefined;
|
|
604
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
605
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
606
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
607
|
+
isMaterial?: true | undefined;
|
|
608
|
+
version?: number | undefined;
|
|
610
609
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
611
610
|
customProgramCacheKey?: (() => string) | undefined;
|
|
611
|
+
needsUpdate?: boolean | undefined;
|
|
612
612
|
onBuild?: ((object: import("three").Object3D, parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
613
613
|
lineWidth: number;
|
|
614
614
|
}>;
|