angular-three-soba 2.6.0 → 2.7.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 +39 -39
- package/abstractions/lib/edges.d.ts +60 -60
- package/abstractions/lib/grid.d.ts +33 -33
- package/abstractions/lib/line.d.ts +1 -1
- package/abstractions/lib/prism-geometry.d.ts +4 -4
- package/abstractions/lib/rounded-box.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +40 -40
- package/abstractions/lib/text.d.ts +1 -1
- 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/gizmos/lib/gizmo-helper/gizmo-viewport.d.ts +1 -1
- package/gizmos/lib/pivot-controls/pivot-controls.d.ts +1 -1
- package/gizmos/lib/transform-controls.d.ts +2 -2
- package/materials/lib/custom-shader-material.d.ts +3 -3
- package/materials/lib/mesh-refraction-material.d.ts +2 -2
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/computed-attribute.d.ts +5 -5
- package/misc/lib/sampler.d.ts +1 -1
- package/package.json +22 -22
- package/performances/lib/instances/instances.d.ts +10 -10
- package/performances/lib/points/points.d.ts +21 -21
- 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/center.d.ts +2 -2
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/mask.d.ts +1 -1
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +2 -2
|
@@ -36,11 +36,21 @@ export declare class NgtsCatmullRomLine {
|
|
|
36
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);
|
|
37
37
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
38
38
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
39
|
+
readonly isMesh?: true | undefined;
|
|
40
|
+
readonly type?: string | undefined;
|
|
41
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
42
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
43
|
+
morphTargetInfluences?: number[] | undefined;
|
|
44
|
+
morphTargetDictionary?: {
|
|
45
|
+
[key: string]: number;
|
|
46
|
+
} | undefined;
|
|
47
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
48
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
49
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
39
50
|
readonly isObject3D?: true | undefined;
|
|
40
51
|
readonly id?: number | undefined;
|
|
41
52
|
uuid?: string | undefined;
|
|
42
53
|
name?: string | undefined;
|
|
43
|
-
readonly type?: string | undefined;
|
|
44
54
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
45
55
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
46
56
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -101,23 +111,13 @@ export declare class NgtsCatmullRomLine {
|
|
|
101
111
|
updateMatrix?: (() => void) | undefined;
|
|
102
112
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
103
113
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
104
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
105
114
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
106
115
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
107
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;
|
|
108
117
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
109
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
110
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
111
118
|
readonly isLine2?: true | undefined;
|
|
112
119
|
readonly isLineSegments2?: true | undefined;
|
|
113
120
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
114
|
-
readonly isMesh?: true | undefined;
|
|
115
|
-
morphTargetInfluences?: number[] | undefined;
|
|
116
|
-
morphTargetDictionary?: {
|
|
117
|
-
[key: string]: number;
|
|
118
|
-
} | undefined;
|
|
119
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
120
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
121
121
|
position: import("angular-three").NgtVector3;
|
|
122
122
|
up: import("angular-three").NgtVector3;
|
|
123
123
|
scale: import("angular-three").NgtVector3;
|
|
@@ -132,14 +132,14 @@ export declare class NgtsCatmullRomLine {
|
|
|
132
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
133
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
134
134
|
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
135
|
+
type?: string | undefined;
|
|
136
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
135
137
|
id?: number | undefined;
|
|
136
138
|
uuid?: string | undefined;
|
|
137
139
|
name?: string | undefined;
|
|
138
|
-
type?: string | undefined;
|
|
139
140
|
visible?: boolean | undefined;
|
|
140
141
|
userData?: Record<string, any> | undefined;
|
|
141
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;
|
|
142
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
143
143
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
144
144
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
145
145
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -148,8 +148,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
148
148
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
149
149
|
dispose: {};
|
|
150
150
|
}[T]) => void) | undefined;
|
|
151
|
-
vertexColors?: boolean | undefined;
|
|
152
151
|
color?: import("three").ColorRepresentation | undefined;
|
|
152
|
+
vertexColors?: boolean | undefined;
|
|
153
153
|
alphaToCoverage?: boolean | undefined;
|
|
154
154
|
dashed?: boolean | undefined;
|
|
155
155
|
dashScale?: number | undefined;
|
|
@@ -243,11 +243,21 @@ export declare class NgtsCatmullRomLine {
|
|
|
243
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;
|
|
244
244
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
245
245
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
246
|
+
readonly isMesh?: true | undefined;
|
|
247
|
+
readonly type?: string | undefined;
|
|
248
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
249
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
250
|
+
morphTargetInfluences?: number[] | undefined;
|
|
251
|
+
morphTargetDictionary?: {
|
|
252
|
+
[key: string]: number;
|
|
253
|
+
} | undefined;
|
|
254
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
255
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
256
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
246
257
|
readonly isObject3D?: true | undefined;
|
|
247
258
|
readonly id?: number | undefined;
|
|
248
259
|
uuid?: string | undefined;
|
|
249
260
|
name?: string | undefined;
|
|
250
|
-
readonly type?: string | undefined;
|
|
251
261
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
252
262
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
253
263
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -308,23 +318,13 @@ export declare class NgtsCatmullRomLine {
|
|
|
308
318
|
updateMatrix?: (() => void) | undefined;
|
|
309
319
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
310
320
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
311
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
312
321
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
313
322
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
314
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;
|
|
315
324
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
316
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
317
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
318
325
|
readonly isLine2?: true | undefined;
|
|
319
326
|
readonly isLineSegments2?: true | undefined;
|
|
320
327
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
321
|
-
readonly isMesh?: true | undefined;
|
|
322
|
-
morphTargetInfluences?: number[] | undefined;
|
|
323
|
-
morphTargetDictionary?: {
|
|
324
|
-
[key: string]: number;
|
|
325
|
-
} | undefined;
|
|
326
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
327
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
328
328
|
position: import("angular-three").NgtVector3;
|
|
329
329
|
up: import("angular-three").NgtVector3;
|
|
330
330
|
scale: import("angular-three").NgtVector3;
|
|
@@ -339,14 +339,14 @@ export declare class NgtsCatmullRomLine {
|
|
|
339
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
340
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
341
341
|
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
342
|
+
type?: string | undefined;
|
|
343
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
342
344
|
id?: number | undefined;
|
|
343
345
|
uuid?: string | undefined;
|
|
344
346
|
name?: string | undefined;
|
|
345
|
-
type?: string | undefined;
|
|
346
347
|
visible?: boolean | undefined;
|
|
347
348
|
userData?: Record<string, any> | undefined;
|
|
348
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;
|
|
349
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
350
350
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
351
351
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
352
352
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -355,8 +355,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
355
355
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
356
356
|
dispose: {};
|
|
357
357
|
}[T]) => void) | undefined;
|
|
358
|
-
vertexColors?: boolean | undefined;
|
|
359
358
|
color?: import("three").ColorRepresentation | undefined;
|
|
359
|
+
vertexColors?: boolean | undefined;
|
|
360
360
|
alphaToCoverage?: boolean | undefined;
|
|
361
361
|
dashed?: boolean | undefined;
|
|
362
362
|
dashScale?: number | undefined;
|
|
@@ -446,11 +446,21 @@ export declare class NgtsCatmullRomLine {
|
|
|
446
446
|
raycast: import("three").Object3D["raycast"] | null;
|
|
447
447
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
448
448
|
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
449
|
+
isMesh?: true | undefined;
|
|
450
|
+
type?: string | undefined;
|
|
451
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
452
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
453
|
+
morphTargetInfluences?: number[] | undefined;
|
|
454
|
+
morphTargetDictionary?: {
|
|
455
|
+
[key: string]: number;
|
|
456
|
+
} | undefined;
|
|
457
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
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;
|
|
449
460
|
isObject3D?: true | undefined;
|
|
450
461
|
id?: number | undefined;
|
|
451
462
|
uuid?: string | undefined;
|
|
452
463
|
name?: string | undefined;
|
|
453
|
-
type?: string | undefined;
|
|
454
464
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
455
465
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
456
466
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -511,7 +521,6 @@ export declare class NgtsCatmullRomLine {
|
|
|
511
521
|
updateMatrix?: (() => void) | undefined;
|
|
512
522
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
513
523
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
514
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
515
524
|
clone?: (((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
516
525
|
copy?: (((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
517
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<{
|
|
@@ -571,18 +580,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
571
580
|
stencilFail?: import("three").StencilOp | undefined;
|
|
572
581
|
stencilZFail?: import("three").StencilOp | undefined;
|
|
573
582
|
stencilZPass?: import("three").StencilOp | undefined;
|
|
574
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
575
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
576
583
|
isLine2?: true | undefined;
|
|
577
584
|
isLineSegments2?: true | undefined;
|
|
578
585
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
579
|
-
isMesh?: true | undefined;
|
|
580
|
-
morphTargetInfluences?: number[] | undefined;
|
|
581
|
-
morphTargetDictionary?: {
|
|
582
|
-
[key: string]: number;
|
|
583
|
-
} | undefined;
|
|
584
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
585
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
586
586
|
isLineMaterial?: true | undefined;
|
|
587
587
|
isShaderMaterial?: true | undefined;
|
|
588
588
|
uniforms?: {
|
|
@@ -28,11 +28,21 @@ export declare class NgtsEdges {
|
|
|
28
28
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[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);
|
|
29
29
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
30
30
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
31
|
+
readonly isMesh?: true | undefined;
|
|
32
|
+
readonly type?: string | undefined;
|
|
33
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
34
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
35
|
+
morphTargetInfluences?: number[] | undefined;
|
|
36
|
+
morphTargetDictionary?: {
|
|
37
|
+
[key: string]: number;
|
|
38
|
+
} | undefined;
|
|
39
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
40
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
41
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
31
42
|
readonly isObject3D?: true | undefined;
|
|
32
43
|
readonly id?: number | undefined;
|
|
33
44
|
uuid?: string | undefined;
|
|
34
45
|
name?: string | undefined;
|
|
35
|
-
readonly type?: string | undefined;
|
|
36
46
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
37
47
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
38
48
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -93,20 +103,10 @@ export declare class NgtsEdges {
|
|
|
93
103
|
updateMatrix?: (() => void) | undefined;
|
|
94
104
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
95
105
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
96
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
97
106
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
98
107
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
99
108
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
100
109
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
101
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
102
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
103
|
-
readonly isMesh?: true | undefined;
|
|
104
|
-
morphTargetInfluences?: number[] | undefined;
|
|
105
|
-
morphTargetDictionary?: {
|
|
106
|
-
[key: string]: number;
|
|
107
|
-
} | undefined;
|
|
108
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
109
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
110
110
|
position: import("angular-three").NgtVector3;
|
|
111
111
|
up: import("angular-three").NgtVector3;
|
|
112
112
|
scale: import("angular-three").NgtVector3;
|
|
@@ -121,11 +121,21 @@ export declare class NgtsEdges {
|
|
|
121
121
|
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);
|
|
122
122
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
123
123
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
124
|
+
readonly isMesh?: true | undefined;
|
|
125
|
+
readonly type?: string | undefined;
|
|
126
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
127
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
128
|
+
morphTargetInfluences?: number[] | undefined;
|
|
129
|
+
morphTargetDictionary?: {
|
|
130
|
+
[key: string]: number;
|
|
131
|
+
} | undefined;
|
|
132
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
133
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
134
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
124
135
|
readonly isObject3D?: true | undefined;
|
|
125
136
|
readonly id?: number | undefined;
|
|
126
137
|
uuid?: string | undefined;
|
|
127
138
|
name?: string | undefined;
|
|
128
|
-
readonly type?: string | undefined;
|
|
129
139
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
130
140
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
131
141
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -186,23 +196,13 @@ export declare class NgtsEdges {
|
|
|
186
196
|
updateMatrix?: (() => void) | undefined;
|
|
187
197
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
188
198
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
189
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
190
199
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
191
200
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
192
201
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
193
202
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
194
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
195
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
196
203
|
readonly isLine2?: true | undefined;
|
|
197
204
|
readonly isLineSegments2?: true | undefined;
|
|
198
205
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
199
|
-
readonly isMesh?: true | undefined;
|
|
200
|
-
morphTargetInfluences?: number[] | undefined;
|
|
201
|
-
morphTargetDictionary?: {
|
|
202
|
-
[key: string]: number;
|
|
203
|
-
} | undefined;
|
|
204
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
205
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
206
206
|
position: import("angular-three").NgtVector3;
|
|
207
207
|
up: import("angular-three").NgtVector3;
|
|
208
208
|
scale: import("angular-three").NgtVector3;
|
|
@@ -217,14 +217,14 @@ export declare class NgtsEdges {
|
|
|
217
217
|
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, [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);
|
|
218
218
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
219
219
|
__ngt_args__: [LineMaterialParameters];
|
|
220
|
+
type?: string | undefined;
|
|
221
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
220
222
|
id?: number | undefined;
|
|
221
223
|
uuid?: string | undefined;
|
|
222
224
|
name?: string | undefined;
|
|
223
|
-
type?: string | undefined;
|
|
224
225
|
visible?: boolean | undefined;
|
|
225
226
|
userData?: Record<string, any> | undefined;
|
|
226
227
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
227
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
228
228
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
229
229
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
230
230
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -233,8 +233,8 @@ export declare class NgtsEdges {
|
|
|
233
233
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
234
234
|
dispose: {};
|
|
235
235
|
}[T]) => void) | undefined;
|
|
236
|
-
vertexColors?: boolean | undefined;
|
|
237
236
|
color?: ColorRepresentation | undefined;
|
|
237
|
+
vertexColors?: boolean | undefined;
|
|
238
238
|
alphaToCoverage?: boolean | undefined;
|
|
239
239
|
dashed?: boolean | undefined;
|
|
240
240
|
dashScale?: number | undefined;
|
|
@@ -328,11 +328,21 @@ export declare class NgtsEdges {
|
|
|
328
328
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & any;
|
|
329
329
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
330
330
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
331
|
+
readonly isMesh?: true | undefined;
|
|
332
|
+
readonly type?: string | undefined;
|
|
333
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
334
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
335
|
+
morphTargetInfluences?: number[] | undefined;
|
|
336
|
+
morphTargetDictionary?: {
|
|
337
|
+
[key: string]: number;
|
|
338
|
+
} | undefined;
|
|
339
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
340
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
341
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
331
342
|
readonly isObject3D?: true | undefined;
|
|
332
343
|
readonly id?: number | undefined;
|
|
333
344
|
uuid?: string | undefined;
|
|
334
345
|
name?: string | undefined;
|
|
335
|
-
readonly type?: string | undefined;
|
|
336
346
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
337
347
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
338
348
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -393,20 +403,10 @@ export declare class NgtsEdges {
|
|
|
393
403
|
updateMatrix?: (() => void) | undefined;
|
|
394
404
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
395
405
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
396
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
397
406
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
398
407
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
399
408
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
400
409
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
401
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
402
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
403
|
-
readonly isMesh?: true | undefined;
|
|
404
|
-
morphTargetInfluences?: number[] | undefined;
|
|
405
|
-
morphTargetDictionary?: {
|
|
406
|
-
[key: string]: number;
|
|
407
|
-
} | undefined;
|
|
408
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
409
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
410
410
|
position: import("angular-three").NgtVector3;
|
|
411
411
|
up: import("angular-three").NgtVector3;
|
|
412
412
|
scale: import("angular-three").NgtVector3;
|
|
@@ -421,11 +421,21 @@ export declare class NgtsEdges {
|
|
|
421
421
|
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;
|
|
422
422
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
423
423
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
424
|
+
readonly isMesh?: true | undefined;
|
|
425
|
+
readonly type?: string | undefined;
|
|
426
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
427
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
428
|
+
morphTargetInfluences?: number[] | undefined;
|
|
429
|
+
morphTargetDictionary?: {
|
|
430
|
+
[key: string]: number;
|
|
431
|
+
} | undefined;
|
|
432
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
433
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
434
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
424
435
|
readonly isObject3D?: true | undefined;
|
|
425
436
|
readonly id?: number | undefined;
|
|
426
437
|
uuid?: string | undefined;
|
|
427
438
|
name?: string | undefined;
|
|
428
|
-
readonly type?: string | undefined;
|
|
429
439
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
430
440
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
431
441
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -486,23 +496,13 @@ export declare class NgtsEdges {
|
|
|
486
496
|
updateMatrix?: (() => void) | undefined;
|
|
487
497
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
488
498
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
489
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
490
499
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
491
500
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
492
501
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
493
502
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
494
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
495
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
496
503
|
readonly isLine2?: true | undefined;
|
|
497
504
|
readonly isLineSegments2?: true | undefined;
|
|
498
505
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
499
|
-
readonly isMesh?: true | undefined;
|
|
500
|
-
morphTargetInfluences?: number[] | undefined;
|
|
501
|
-
morphTargetDictionary?: {
|
|
502
|
-
[key: string]: number;
|
|
503
|
-
} | undefined;
|
|
504
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
505
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
506
506
|
position: import("angular-three").NgtVector3;
|
|
507
507
|
up: import("angular-three").NgtVector3;
|
|
508
508
|
scale: import("angular-three").NgtVector3;
|
|
@@ -517,14 +517,14 @@ export declare class NgtsEdges {
|
|
|
517
517
|
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, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
518
518
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
519
519
|
__ngt_args__: [LineMaterialParameters];
|
|
520
|
+
type?: string | undefined;
|
|
521
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
520
522
|
id?: number | undefined;
|
|
521
523
|
uuid?: string | undefined;
|
|
522
524
|
name?: string | undefined;
|
|
523
|
-
type?: string | undefined;
|
|
524
525
|
visible?: boolean | undefined;
|
|
525
526
|
userData?: Record<string, any> | undefined;
|
|
526
527
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
527
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
528
528
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
529
529
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
530
530
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -533,8 +533,8 @@ export declare class NgtsEdges {
|
|
|
533
533
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
534
534
|
dispose: {};
|
|
535
535
|
}[T]) => void) | undefined;
|
|
536
|
-
vertexColors?: boolean | undefined;
|
|
537
536
|
color?: ColorRepresentation | undefined;
|
|
537
|
+
vertexColors?: boolean | undefined;
|
|
538
538
|
alphaToCoverage?: boolean | undefined;
|
|
539
539
|
dashed?: boolean | undefined;
|
|
540
540
|
dashScale?: number | undefined;
|
|
@@ -625,11 +625,20 @@ export declare class NgtsEdges {
|
|
|
625
625
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
626
626
|
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
627
627
|
__ngt_args__?: ([geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined] & [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined] & [LineMaterialParameters]) | undefined;
|
|
628
|
+
isMesh?: true | undefined;
|
|
629
|
+
type?: string | undefined;
|
|
630
|
+
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
631
|
+
morphTargetInfluences?: number[] | undefined;
|
|
632
|
+
morphTargetDictionary?: {
|
|
633
|
+
[key: string]: number;
|
|
634
|
+
} | undefined;
|
|
635
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
636
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
637
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
628
638
|
isObject3D?: true | undefined;
|
|
629
639
|
id?: number | undefined;
|
|
630
640
|
uuid?: string | undefined;
|
|
631
641
|
name?: string | undefined;
|
|
632
|
-
type?: string | undefined;
|
|
633
642
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
634
643
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
635
644
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -690,7 +699,6 @@ export declare class NgtsEdges {
|
|
|
690
699
|
updateMatrix?: (() => void) | undefined;
|
|
691
700
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
692
701
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
693
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
694
702
|
clone?: (((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) & ((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
695
703
|
copy?: (((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) & ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
696
704
|
hasEventListener?: ((<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) & (<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<{
|
|
@@ -750,17 +758,9 @@ export declare class NgtsEdges {
|
|
|
750
758
|
stencilFail?: import("three").StencilOp | undefined;
|
|
751
759
|
stencilZFail?: import("three").StencilOp | undefined;
|
|
752
760
|
stencilZPass?: import("three").StencilOp | undefined;
|
|
753
|
-
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
754
761
|
isLine2?: true | undefined;
|
|
755
762
|
isLineSegments2?: true | undefined;
|
|
756
763
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
757
|
-
isMesh?: true | undefined;
|
|
758
|
-
morphTargetInfluences?: number[] | undefined;
|
|
759
|
-
morphTargetDictionary?: {
|
|
760
|
-
[key: string]: number;
|
|
761
|
-
} | undefined;
|
|
762
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
763
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
764
764
|
isLineMaterial?: true | undefined;
|
|
765
765
|
isShaderMaterial?: true | undefined;
|
|
766
766
|
uniforms?: {
|