angular-three-soba 2.10.7 → 2.12.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 +38 -38
- package/abstractions/lib/edges.d.ts +58 -58
- package/abstractions/lib/gradient-texture.d.ts +1 -1
- package/abstractions/lib/grid.d.ts +33 -33
- package/abstractions/lib/line.d.ts +2 -2
- package/abstractions/lib/prism-geometry.d.ts +2 -2
- package/abstractions/lib/rounded-box.d.ts +3 -2
- package/abstractions/lib/text-3d.d.ts +36 -36
- package/esm2022/abstractions/lib/rounded-box.mjs +30 -4
- package/fesm2022/angular-three-soba-abstractions.mjs +28 -2
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/materials/lib/custom-shader-material.d.ts +3 -3
- package/materials/lib/mesh-portal-material.d.ts +25 -25
- package/materials/lib/mesh-refraction-material.d.ts +2 -2
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
21
21
|
segmentedPoints: import("@angular/core").Signal<Vector3[]>;
|
|
22
22
|
private interpolatedVertexColors;
|
|
23
23
|
lineOptions: import("@angular/core").Signal<{
|
|
24
|
-
vertexColors: (
|
|
24
|
+
vertexColors: ([number, number, number] | import("three").ColorRepresentation | [number, number, number, number])[] | undefined;
|
|
25
25
|
position?: import("angular-three").NgtVector3 | undefined;
|
|
26
26
|
up?: import("angular-three").NgtVector3 | undefined;
|
|
27
27
|
scale?: import("angular-three").NgtVector3 | undefined;
|
|
@@ -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
|
+
readonly 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
|
-
readonly 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<{
|
|
@@ -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
|
+
readonly 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
|
-
readonly 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<{
|
|
@@ -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<{
|
|
@@ -520,18 +529,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
520
529
|
dispatchEvent?: ((<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) & (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
521
530
|
dispose: {};
|
|
522
531
|
}[T]) => void)) | undefined;
|
|
523
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
524
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
525
532
|
isLine2?: true | undefined;
|
|
526
533
|
isLineSegments2?: true | undefined;
|
|
527
534
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
528
|
-
isMesh?: true | undefined;
|
|
529
|
-
morphTargetInfluences?: number[] | undefined;
|
|
530
|
-
morphTargetDictionary?: {
|
|
531
|
-
[key: string]: number;
|
|
532
|
-
} | undefined;
|
|
533
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
534
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
535
535
|
color?: import("three").ColorRepresentation | undefined;
|
|
536
536
|
dashed?: boolean | undefined;
|
|
537
537
|
dashScale?: number | undefined;
|
|
@@ -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
|
+
readonly 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
|
-
readonly 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<{
|
|
@@ -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
|
+
readonly 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
|
-
readonly 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<{
|
|
@@ -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<{
|
|
@@ -699,17 +707,9 @@ export declare class NgtsEdges {
|
|
|
699
707
|
dispatchEvent?: ((<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) & (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
700
708
|
dispose: {};
|
|
701
709
|
}[T]) => void)) | undefined;
|
|
702
|
-
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
703
710
|
isLine2?: true | undefined;
|
|
704
711
|
isLineSegments2?: true | undefined;
|
|
705
712
|
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
706
|
-
isMesh?: true | undefined;
|
|
707
|
-
morphTargetInfluences?: number[] | undefined;
|
|
708
|
-
morphTargetDictionary?: {
|
|
709
|
-
[key: string]: number;
|
|
710
|
-
} | undefined;
|
|
711
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
712
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
713
713
|
color?: ColorRepresentation | undefined;
|
|
714
714
|
dashed?: boolean | undefined;
|
|
715
715
|
dashScale?: number | undefined;
|
|
@@ -13,7 +13,7 @@ export declare class NgtsGradientTexture {
|
|
|
13
13
|
stops: import("@angular/core").InputSignal<number[]>;
|
|
14
14
|
colors: import("@angular/core").InputSignal<ColorRepresentation[]>;
|
|
15
15
|
options: import("@angular/core").InputSignalWithTransform<NgtsGradientTextureOptions, "" | Partial<NgtsGradientTextureOptions>>;
|
|
16
|
-
parameters: import("@angular/core").Signal<Omit<NgtsGradientTextureOptions, "type" | "
|
|
16
|
+
parameters: import("@angular/core").Signal<Omit<NgtsGradientTextureOptions, "type" | "width" | "size" | "innerCircleRadius" | "outerCircleRadius">>;
|
|
17
17
|
private store;
|
|
18
18
|
gl: import("@angular/core").Signal<import("three").WebGLRenderer>;
|
|
19
19
|
private document;
|
|
@@ -8,11 +8,21 @@ export declare class NgtsGrid {
|
|
|
8
8
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").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: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
9
9
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
10
10
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
11
|
+
readonly isMesh?: true | undefined;
|
|
12
|
+
readonly type?: string | undefined;
|
|
13
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
14
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
15
|
+
morphTargetInfluences?: number[] | undefined;
|
|
16
|
+
morphTargetDictionary?: {
|
|
17
|
+
[key: string]: number;
|
|
18
|
+
} | undefined;
|
|
19
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
20
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
21
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
11
22
|
readonly isObject3D?: true | undefined;
|
|
12
23
|
readonly id?: number | undefined;
|
|
13
24
|
uuid?: string | undefined;
|
|
14
25
|
name?: string | undefined;
|
|
15
|
-
readonly type?: string | undefined;
|
|
16
26
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
17
27
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
18
28
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -73,20 +83,10 @@ export declare class NgtsGrid {
|
|
|
73
83
|
updateMatrix?: (() => void) | undefined;
|
|
74
84
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
75
85
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
76
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
77
86
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
78
87
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
79
88
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
80
89
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
81
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
82
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
83
|
-
readonly isMesh?: true | undefined;
|
|
84
|
-
morphTargetInfluences?: number[] | undefined;
|
|
85
|
-
morphTargetDictionary?: {
|
|
86
|
-
[key: string]: number;
|
|
87
|
-
} | undefined;
|
|
88
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
89
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
90
90
|
position: import("angular-three").NgtVector3;
|
|
91
91
|
up: import("angular-three").NgtVector3;
|
|
92
92
|
scale: import("angular-three").NgtVector3;
|
|
@@ -103,11 +103,21 @@ export declare class NgtsGrid {
|
|
|
103
103
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").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: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
104
104
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
105
105
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
106
|
+
readonly isMesh?: true | undefined;
|
|
107
|
+
readonly type?: string | undefined;
|
|
108
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
109
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
110
|
+
morphTargetInfluences?: number[] | undefined;
|
|
111
|
+
morphTargetDictionary?: {
|
|
112
|
+
[key: string]: number;
|
|
113
|
+
} | undefined;
|
|
114
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
115
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
116
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
106
117
|
readonly isObject3D?: true | undefined;
|
|
107
118
|
readonly id?: number | undefined;
|
|
108
119
|
uuid?: string | undefined;
|
|
109
120
|
name?: string | undefined;
|
|
110
|
-
readonly type?: string | undefined;
|
|
111
121
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
112
122
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
113
123
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -168,20 +178,10 @@ export declare class NgtsGrid {
|
|
|
168
178
|
updateMatrix?: (() => void) | undefined;
|
|
169
179
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
170
180
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
171
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
172
181
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
173
182
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
174
183
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
175
184
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
176
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
177
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
178
|
-
readonly isMesh?: true | undefined;
|
|
179
|
-
morphTargetInfluences?: number[] | undefined;
|
|
180
|
-
morphTargetDictionary?: {
|
|
181
|
-
[key: string]: number;
|
|
182
|
-
} | undefined;
|
|
183
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
184
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
185
185
|
position: import("angular-three").NgtVector3;
|
|
186
186
|
up: import("angular-three").NgtVector3;
|
|
187
187
|
scale: import("angular-three").NgtVector3;
|
|
@@ -199,11 +199,21 @@ export declare class NgtsGrid {
|
|
|
199
199
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").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: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
200
200
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
201
201
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
202
|
+
readonly isMesh?: true | undefined;
|
|
203
|
+
readonly type?: string | undefined;
|
|
204
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
205
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
206
|
+
morphTargetInfluences?: number[] | undefined;
|
|
207
|
+
morphTargetDictionary?: {
|
|
208
|
+
[key: string]: number;
|
|
209
|
+
} | undefined;
|
|
210
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
211
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
212
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
202
213
|
readonly isObject3D?: true | undefined;
|
|
203
214
|
readonly id?: number | undefined;
|
|
204
215
|
uuid?: string | undefined;
|
|
205
216
|
name?: string | undefined;
|
|
206
|
-
readonly type?: string | undefined;
|
|
207
217
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
208
218
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
209
219
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -264,20 +274,10 @@ export declare class NgtsGrid {
|
|
|
264
274
|
updateMatrix?: (() => void) | undefined;
|
|
265
275
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
266
276
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
267
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
268
277
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
269
278
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
270
279
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
271
280
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
272
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
273
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
274
|
-
readonly isMesh?: true | undefined;
|
|
275
|
-
morphTargetInfluences?: number[] | undefined;
|
|
276
|
-
morphTargetDictionary?: {
|
|
277
|
-
[key: string]: number;
|
|
278
|
-
} | undefined;
|
|
279
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
280
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
281
281
|
position: import("angular-three").NgtVector3;
|
|
282
282
|
up: import("angular-three").NgtVector3;
|
|
283
283
|
scale: import("angular-three").NgtVector3;
|