angular-three-soba 2.5.2 → 2.6.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 +53 -53
- package/abstractions/lib/edges.d.ts +75 -75
- package/abstractions/lib/grid.d.ts +36 -36
- 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 +43 -43
- package/abstractions/lib/text.d.ts +1 -1
- package/cameras/lib/cube-camera.d.ts +1 -1
- package/cameras/lib/orthographic-camera.d.ts +1 -1
- package/cameras/lib/perspective-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/loaders/index.mjs +2 -1
- package/esm2022/loaders/lib/fbx-loader.mjs +13 -0
- package/fesm2022/angular-three-soba-loaders.mjs +14 -4
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/gizmos/lib/gizmo-helper/gizmo-viewport.d.ts +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/loaders/index.d.ts +1 -0
- package/loaders/lib/fbx-loader.d.ts +10 -0
- 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/metadata.json +1 -1
- package/misc/lib/computed-attribute.d.ts +42 -46
- package/misc/lib/html/html.d.ts +1 -1
- package/misc/lib/sampler.d.ts +1 -1
- package/package.json +23 -23
- package/performances/lib/instances/instances.d.ts +11 -11
- package/performances/lib/points/points.d.ts +23 -23
- package/performances/lib/segments/segments.d.ts +4 -4
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/center.d.ts +6 -6
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +4 -4
- 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
- package/staging/lib/stage.d.ts +12 -12
- package/web-types.json +1 -1
|
@@ -22,27 +22,25 @@ export declare class NgtsCatmullRomLine {
|
|
|
22
22
|
private interpolatedVertexColors;
|
|
23
23
|
lineOptions: import("@angular/core").Signal<{
|
|
24
24
|
vertexColors: ([number, number, number] | import("three").ColorRepresentation | [number, number, number, number])[] | undefined;
|
|
25
|
-
|
|
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;
|
|
26
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: {
|
|
27
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
28
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;
|
|
29
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
30
38
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
31
|
-
readonly isMesh?: true | undefined;
|
|
32
|
-
readonly type?: string | undefined;
|
|
33
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
34
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
35
|
-
morphTargetInfluences?: number[] | undefined;
|
|
36
|
-
morphTargetDictionary?: {
|
|
37
|
-
[key: string]: number;
|
|
38
|
-
} | undefined;
|
|
39
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
40
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
41
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
42
39
|
readonly isObject3D?: true | undefined;
|
|
43
40
|
readonly id?: number | undefined;
|
|
44
41
|
uuid?: string | undefined;
|
|
45
42
|
name?: string | undefined;
|
|
43
|
+
readonly type?: string | undefined;
|
|
46
44
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
47
45
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
48
46
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -103,13 +101,23 @@ export declare class NgtsCatmullRomLine {
|
|
|
103
101
|
updateMatrix?: (() => void) | undefined;
|
|
104
102
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
105
103
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
104
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
106
105
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
107
106
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
108
107
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
109
108
|
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;
|
|
110
111
|
readonly isLine2?: true | undefined;
|
|
111
112
|
readonly isLineSegments2?: true | undefined;
|
|
112
113
|
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;
|
|
113
121
|
position: import("angular-three").NgtVector3;
|
|
114
122
|
up: import("angular-three").NgtVector3;
|
|
115
123
|
scale: import("angular-three").NgtVector3;
|
|
@@ -120,18 +128,18 @@ export declare class NgtsCatmullRomLine {
|
|
|
120
128
|
dispose: (() => void) | null;
|
|
121
129
|
raycast: import("three").Object3D["raycast"] | null;
|
|
122
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: {
|
|
123
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
124
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;
|
|
125
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;
|
|
126
134
|
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
127
|
-
type?: string | undefined;
|
|
128
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
129
135
|
id?: number | undefined;
|
|
130
136
|
uuid?: string | undefined;
|
|
131
137
|
name?: string | undefined;
|
|
138
|
+
type?: string | undefined;
|
|
132
139
|
visible?: boolean | undefined;
|
|
133
140
|
userData?: Record<string, any> | undefined;
|
|
134
141
|
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;
|
|
135
143
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
136
144
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
137
145
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -140,8 +148,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
140
148
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
141
149
|
dispose: {};
|
|
142
150
|
}[T]) => void) | undefined;
|
|
143
|
-
color?: import("three").ColorRepresentation | undefined;
|
|
144
151
|
vertexColors?: boolean | undefined;
|
|
152
|
+
color?: import("three").ColorRepresentation | undefined;
|
|
145
153
|
alphaToCoverage?: boolean | undefined;
|
|
146
154
|
dashed?: boolean | undefined;
|
|
147
155
|
dashScale?: number | undefined;
|
|
@@ -231,25 +239,15 @@ export declare class NgtsCatmullRomLine {
|
|
|
231
239
|
raycast: import("three").Object3D["raycast"] | null;
|
|
232
240
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
233
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: {
|
|
234
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
235
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);
|
|
236
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
237
245
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
238
|
-
readonly isMesh?: true | undefined;
|
|
239
|
-
readonly type?: string | undefined;
|
|
240
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
241
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
242
|
-
morphTargetInfluences?: number[] | undefined;
|
|
243
|
-
morphTargetDictionary?: {
|
|
244
|
-
[key: string]: number;
|
|
245
|
-
} | undefined;
|
|
246
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
247
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
248
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
249
246
|
readonly isObject3D?: true | undefined;
|
|
250
247
|
readonly id?: number | undefined;
|
|
251
248
|
uuid?: string | undefined;
|
|
252
249
|
name?: string | undefined;
|
|
250
|
+
readonly type?: string | undefined;
|
|
253
251
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
254
252
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
255
253
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -310,13 +308,23 @@ export declare class NgtsCatmullRomLine {
|
|
|
310
308
|
updateMatrix?: (() => void) | undefined;
|
|
311
309
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
312
310
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
311
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
313
312
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
314
313
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
315
314
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
316
315
|
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;
|
|
317
318
|
readonly isLine2?: true | undefined;
|
|
318
319
|
readonly isLineSegments2?: true | undefined;
|
|
319
320
|
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;
|
|
320
328
|
position: import("angular-three").NgtVector3;
|
|
321
329
|
up: import("angular-three").NgtVector3;
|
|
322
330
|
scale: import("angular-three").NgtVector3;
|
|
@@ -327,18 +335,18 @@ export declare class NgtsCatmullRomLine {
|
|
|
327
335
|
dispose: (() => void) | null;
|
|
328
336
|
raycast: import("three").Object3D["raycast"] | null;
|
|
329
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: {
|
|
330
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
331
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);
|
|
332
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;
|
|
333
341
|
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
334
|
-
type?: string | undefined;
|
|
335
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
336
342
|
id?: number | undefined;
|
|
337
343
|
uuid?: string | undefined;
|
|
338
344
|
name?: string | undefined;
|
|
345
|
+
type?: string | undefined;
|
|
339
346
|
visible?: boolean | undefined;
|
|
340
347
|
userData?: Record<string, any> | undefined;
|
|
341
348
|
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;
|
|
342
350
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
343
351
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
344
352
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -347,8 +355,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
347
355
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
348
356
|
dispose: {};
|
|
349
357
|
}[T]) => void) | undefined;
|
|
350
|
-
color?: import("three").ColorRepresentation | undefined;
|
|
351
358
|
vertexColors?: boolean | undefined;
|
|
359
|
+
color?: import("three").ColorRepresentation | undefined;
|
|
352
360
|
alphaToCoverage?: boolean | undefined;
|
|
353
361
|
dashed?: boolean | undefined;
|
|
354
362
|
dashScale?: number | undefined;
|
|
@@ -437,30 +445,12 @@ export declare class NgtsCatmullRomLine {
|
|
|
437
445
|
dispose: (() => void) | null;
|
|
438
446
|
raycast: import("three").Object3D["raycast"] | null;
|
|
439
447
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
440
|
-
|
|
441
|
-
up?: import("angular-three").NgtVector3 | undefined;
|
|
442
|
-
scale?: import("angular-three").NgtVector3 | undefined;
|
|
443
|
-
rotation?: import("angular-three").NgtEuler | undefined;
|
|
444
|
-
matrix?: import("angular-three").NgtMatrix4 | undefined;
|
|
445
|
-
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
446
|
-
layers?: import("angular-three").NgtLayers | undefined;
|
|
447
|
-
dispose?: (() => void) | null | undefined;
|
|
448
|
-
raycast?: ((raycaster: import("three").Raycaster, intersects: import("three").Intersection[]) => void) | null | 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;
|
|
448
|
+
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
460
449
|
isObject3D?: true | undefined;
|
|
461
450
|
id?: number | undefined;
|
|
462
451
|
uuid?: string | undefined;
|
|
463
452
|
name?: string | undefined;
|
|
453
|
+
type?: string | undefined;
|
|
464
454
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
465
455
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
466
456
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -521,6 +511,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
521
511
|
updateMatrix?: (() => void) | undefined;
|
|
522
512
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
523
513
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
514
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
524
515
|
clone?: (((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
525
516
|
copy?: (((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
526
517
|
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<{
|
|
@@ -580,9 +571,18 @@ export declare class NgtsCatmullRomLine {
|
|
|
580
571
|
stencilFail?: import("three").StencilOp | undefined;
|
|
581
572
|
stencilZFail?: import("three").StencilOp | undefined;
|
|
582
573
|
stencilZPass?: import("three").StencilOp | undefined;
|
|
574
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
575
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
583
576
|
isLine2?: true | undefined;
|
|
584
577
|
isLineSegments2?: true | undefined;
|
|
585
578
|
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?: {
|
|
@@ -15,27 +15,24 @@ export declare class NgtsEdges {
|
|
|
15
15
|
private parameters;
|
|
16
16
|
protected lineOptions: import("@angular/core").Signal<{
|
|
17
17
|
raycast: () => null;
|
|
18
|
-
|
|
18
|
+
position?: import("angular-three").NgtVector3 | undefined;
|
|
19
|
+
up?: import("angular-three").NgtVector3 | undefined;
|
|
20
|
+
scale?: import("angular-three").NgtVector3 | undefined;
|
|
21
|
+
rotation?: import("angular-three").NgtEuler | undefined;
|
|
22
|
+
matrix?: import("angular-three").NgtMatrix4 | undefined;
|
|
23
|
+
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
24
|
+
layers?: import("angular-three").NgtLayers | undefined;
|
|
25
|
+
dispose?: (() => void) | null | undefined;
|
|
19
26
|
addEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, 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]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
20
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
21
27
|
addEventListener: (<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;
|
|
22
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
23
30
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
24
|
-
readonly isMesh?: true | undefined;
|
|
25
|
-
readonly type?: string | undefined;
|
|
26
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
27
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
28
|
-
morphTargetInfluences?: number[] | undefined;
|
|
29
|
-
morphTargetDictionary?: {
|
|
30
|
-
[key: string]: number;
|
|
31
|
-
} | undefined;
|
|
32
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
33
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
34
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
35
31
|
readonly isObject3D?: true | undefined;
|
|
36
32
|
readonly id?: number | undefined;
|
|
37
33
|
uuid?: string | undefined;
|
|
38
34
|
name?: string | undefined;
|
|
35
|
+
readonly type?: string | undefined;
|
|
39
36
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
40
37
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
41
38
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -96,10 +93,20 @@ export declare class NgtsEdges {
|
|
|
96
93
|
updateMatrix?: (() => void) | undefined;
|
|
97
94
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
98
95
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
96
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
99
97
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
100
98
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
101
99
|
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;
|
|
102
100
|
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;
|
|
103
110
|
position: import("angular-three").NgtVector3;
|
|
104
111
|
up: import("angular-three").NgtVector3;
|
|
105
112
|
scale: import("angular-three").NgtVector3;
|
|
@@ -110,25 +117,15 @@ export declare class NgtsEdges {
|
|
|
110
117
|
dispose: (() => void) | null;
|
|
111
118
|
raycast: import("three").Object3D["raycast"] | null;
|
|
112
119
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<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: {
|
|
113
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
114
120
|
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;
|
|
115
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
116
123
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
117
|
-
readonly isMesh?: true | undefined;
|
|
118
|
-
readonly type?: string | undefined;
|
|
119
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
120
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
121
|
-
morphTargetInfluences?: number[] | undefined;
|
|
122
|
-
morphTargetDictionary?: {
|
|
123
|
-
[key: string]: number;
|
|
124
|
-
} | undefined;
|
|
125
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
126
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
127
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
128
124
|
readonly isObject3D?: true | undefined;
|
|
129
125
|
readonly id?: number | undefined;
|
|
130
126
|
uuid?: string | undefined;
|
|
131
127
|
name?: string | undefined;
|
|
128
|
+
readonly type?: string | undefined;
|
|
132
129
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
133
130
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
134
131
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -189,13 +186,23 @@ export declare class NgtsEdges {
|
|
|
189
186
|
updateMatrix?: (() => void) | undefined;
|
|
190
187
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
191
188
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
189
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
192
190
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
193
191
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
194
192
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
195
193
|
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
196
|
readonly isLine2?: true | undefined;
|
|
197
197
|
readonly isLineSegments2?: true | undefined;
|
|
198
198
|
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;
|
|
199
206
|
position: import("angular-three").NgtVector3;
|
|
200
207
|
up: import("angular-three").NgtVector3;
|
|
201
208
|
scale: import("angular-three").NgtVector3;
|
|
@@ -206,18 +213,18 @@ export declare class NgtsEdges {
|
|
|
206
213
|
dispose: (() => void) | null;
|
|
207
214
|
raycast: import("three").Object3D["raycast"] | null;
|
|
208
215
|
}, 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, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
209
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
210
216
|
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, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
211
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
212
219
|
__ngt_args__: [LineMaterialParameters];
|
|
213
|
-
type?: string | undefined;
|
|
214
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
215
220
|
id?: number | undefined;
|
|
216
221
|
uuid?: string | undefined;
|
|
217
222
|
name?: string | undefined;
|
|
223
|
+
type?: string | undefined;
|
|
218
224
|
visible?: boolean | undefined;
|
|
219
225
|
userData?: Record<string, any> | undefined;
|
|
220
226
|
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;
|
|
221
228
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
222
229
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
223
230
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -226,8 +233,8 @@ export declare class NgtsEdges {
|
|
|
226
233
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
227
234
|
dispose: {};
|
|
228
235
|
}[T]) => void) | undefined;
|
|
229
|
-
color?: ColorRepresentation | undefined;
|
|
230
236
|
vertexColors?: boolean | undefined;
|
|
237
|
+
color?: ColorRepresentation | undefined;
|
|
231
238
|
alphaToCoverage?: boolean | undefined;
|
|
232
239
|
dashed?: boolean | undefined;
|
|
233
240
|
dashScale?: number | undefined;
|
|
@@ -317,25 +324,15 @@ export declare class NgtsEdges {
|
|
|
317
324
|
raycast: import("three").Object3D["raycast"] | null;
|
|
318
325
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
319
326
|
removeEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, 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]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
320
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
321
327
|
addEventListener: (<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);
|
|
322
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
323
330
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
324
|
-
readonly isMesh?: true | undefined;
|
|
325
|
-
readonly type?: string | undefined;
|
|
326
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
327
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
328
|
-
morphTargetInfluences?: number[] | undefined;
|
|
329
|
-
morphTargetDictionary?: {
|
|
330
|
-
[key: string]: number;
|
|
331
|
-
} | undefined;
|
|
332
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
333
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
334
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
335
331
|
readonly isObject3D?: true | undefined;
|
|
336
332
|
readonly id?: number | undefined;
|
|
337
333
|
uuid?: string | undefined;
|
|
338
334
|
name?: string | undefined;
|
|
335
|
+
readonly type?: string | undefined;
|
|
339
336
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
340
337
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
341
338
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -396,10 +393,20 @@ export declare class NgtsEdges {
|
|
|
396
393
|
updateMatrix?: (() => void) | undefined;
|
|
397
394
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
398
395
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
396
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
399
397
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
400
398
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
401
399
|
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;
|
|
402
400
|
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;
|
|
403
410
|
position: import("angular-three").NgtVector3;
|
|
404
411
|
up: import("angular-three").NgtVector3;
|
|
405
412
|
scale: import("angular-three").NgtVector3;
|
|
@@ -410,25 +417,15 @@ export declare class NgtsEdges {
|
|
|
410
417
|
dispose: (() => void) | null;
|
|
411
418
|
raycast: import("three").Object3D["raycast"] | null;
|
|
412
419
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<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: {
|
|
413
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
414
420
|
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);
|
|
415
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
416
423
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
417
|
-
readonly isMesh?: true | undefined;
|
|
418
|
-
readonly type?: string | undefined;
|
|
419
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
420
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
421
|
-
morphTargetInfluences?: number[] | undefined;
|
|
422
|
-
morphTargetDictionary?: {
|
|
423
|
-
[key: string]: number;
|
|
424
|
-
} | undefined;
|
|
425
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
426
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
427
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
428
424
|
readonly isObject3D?: true | undefined;
|
|
429
425
|
readonly id?: number | undefined;
|
|
430
426
|
uuid?: string | undefined;
|
|
431
427
|
name?: string | undefined;
|
|
428
|
+
readonly type?: string | undefined;
|
|
432
429
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
433
430
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
434
431
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -489,13 +486,23 @@ export declare class NgtsEdges {
|
|
|
489
486
|
updateMatrix?: (() => void) | undefined;
|
|
490
487
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
491
488
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
489
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
492
490
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
493
491
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
494
492
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
495
493
|
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
496
|
readonly isLine2?: true | undefined;
|
|
497
497
|
readonly isLineSegments2?: true | undefined;
|
|
498
498
|
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;
|
|
499
506
|
position: import("angular-three").NgtVector3;
|
|
500
507
|
up: import("angular-three").NgtVector3;
|
|
501
508
|
scale: import("angular-three").NgtVector3;
|
|
@@ -506,18 +513,18 @@ export declare class NgtsEdges {
|
|
|
506
513
|
dispose: (() => void) | null;
|
|
507
514
|
raycast: import("three").Object3D["raycast"] | null;
|
|
508
515
|
}, 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, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
509
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
510
516
|
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, [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);
|
|
511
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
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
512
519
|
__ngt_args__: [LineMaterialParameters];
|
|
513
|
-
type?: string | undefined;
|
|
514
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
515
520
|
id?: number | undefined;
|
|
516
521
|
uuid?: string | undefined;
|
|
517
522
|
name?: string | undefined;
|
|
523
|
+
type?: string | undefined;
|
|
518
524
|
visible?: boolean | undefined;
|
|
519
525
|
userData?: Record<string, any> | undefined;
|
|
520
526
|
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;
|
|
521
528
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
522
529
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
523
530
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -526,8 +533,8 @@ export declare class NgtsEdges {
|
|
|
526
533
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
527
534
|
dispose: {};
|
|
528
535
|
}[T]) => void) | undefined;
|
|
529
|
-
color?: ColorRepresentation | undefined;
|
|
530
536
|
vertexColors?: boolean | undefined;
|
|
537
|
+
color?: ColorRepresentation | undefined;
|
|
531
538
|
alphaToCoverage?: boolean | undefined;
|
|
532
539
|
dashed?: boolean | undefined;
|
|
533
540
|
dashScale?: number | undefined;
|
|
@@ -616,29 +623,13 @@ export declare class NgtsEdges {
|
|
|
616
623
|
dispose: (() => void) | null;
|
|
617
624
|
raycast: import("three").Object3D["raycast"] | null;
|
|
618
625
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
626
|
+
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
619
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;
|
|
620
|
-
position?: import("angular-three").NgtVector3 | undefined;
|
|
621
|
-
up?: import("angular-three").NgtVector3 | undefined;
|
|
622
|
-
scale?: import("angular-three").NgtVector3 | undefined;
|
|
623
|
-
rotation?: import("angular-three").NgtEuler | undefined;
|
|
624
|
-
matrix?: import("angular-three").NgtMatrix4 | undefined;
|
|
625
|
-
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
626
|
-
layers?: import("angular-three").NgtLayers | undefined;
|
|
627
|
-
dispose?: (() => void) | null | 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;
|
|
638
628
|
isObject3D?: true | undefined;
|
|
639
629
|
id?: number | undefined;
|
|
640
630
|
uuid?: string | undefined;
|
|
641
631
|
name?: string | undefined;
|
|
632
|
+
type?: string | undefined;
|
|
642
633
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
643
634
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
644
635
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -699,6 +690,7 @@ export declare class NgtsEdges {
|
|
|
699
690
|
updateMatrix?: (() => void) | undefined;
|
|
700
691
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
701
692
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
693
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
702
694
|
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;
|
|
703
695
|
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;
|
|
704
696
|
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<{
|
|
@@ -758,9 +750,17 @@ export declare class NgtsEdges {
|
|
|
758
750
|
stencilFail?: import("three").StencilOp | undefined;
|
|
759
751
|
stencilZFail?: import("three").StencilOp | undefined;
|
|
760
752
|
stencilZPass?: import("three").StencilOp | undefined;
|
|
753
|
+
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
761
754
|
isLine2?: true | undefined;
|
|
762
755
|
isLineSegments2?: true | undefined;
|
|
763
756
|
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?: {
|