angular-three-soba 2.0.0-beta.315 → 2.0.0-beta.316
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 +17 -35
- package/abstractions/lib/edges.d.ts +23 -50
- package/abstractions/lib/grid.d.ts +9 -18
- package/abstractions/lib/prism-geometry.d.ts +3 -1
- package/abstractions/lib/text-3d.d.ts +9 -18
- package/esm2022/abstractions/lib/prism-geometry.mjs +5 -4
- package/esm2022/controls/lib/orbit-controls.mjs +7 -1
- package/fesm2022/angular-three-soba-abstractions.mjs +4 -3
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +6 -0
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/package.json +8 -8
- package/performances/lib/instances/instances.d.ts +3 -6
- package/performances/lib/points/points.d.ts +6 -12
- package/staging/lib/center.d.ts +12 -24
- package/staging/lib/lightformer.d.ts +9 -18
- package/staging/lib/stage.d.ts +9 -18
|
@@ -50,8 +50,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
50
50
|
userData?: Record<string, any> | undefined;
|
|
51
51
|
customDepthMaterial?: import("three").Material | undefined;
|
|
52
52
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
53
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
54
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
53
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
54
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
55
55
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
56
56
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
57
57
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -96,10 +96,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
96
96
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
97
97
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
98
98
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
99
|
-
hasEventListener?:
|
|
100
|
-
<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>): boolean;
|
|
101
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
102
|
-
} | undefined;
|
|
99
|
+
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
103
100
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
104
101
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
105
102
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
@@ -137,12 +134,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
137
134
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
138
135
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
139
136
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
140
|
-
hasEventListener?: {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}[T], T, import("three-stdlib").LineMaterial>): boolean;
|
|
144
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").LineMaterial>): boolean;
|
|
145
|
-
} | undefined;
|
|
137
|
+
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
138
|
+
dispose: {};
|
|
139
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
146
140
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
147
141
|
dispose: {};
|
|
148
142
|
}[T]) => void) | undefined;
|
|
@@ -263,8 +257,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
263
257
|
userData?: Record<string, any> | undefined;
|
|
264
258
|
customDepthMaterial?: import("three").Material | undefined;
|
|
265
259
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
266
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
267
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
260
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
261
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
268
262
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
269
263
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
270
264
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -309,10 +303,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
309
303
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
310
304
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
311
305
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
312
|
-
hasEventListener?:
|
|
313
|
-
<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>): boolean;
|
|
314
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
315
|
-
} | undefined;
|
|
306
|
+
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
307
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
317
308
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
318
309
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
@@ -350,12 +341,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
350
341
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
351
342
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
352
343
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
353
|
-
hasEventListener?: {
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
}[T], T, import("three-stdlib").LineMaterial>): boolean;
|
|
357
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").LineMaterial>): boolean;
|
|
358
|
-
} | undefined;
|
|
344
|
+
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
345
|
+
dispose: {};
|
|
346
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
359
347
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
360
348
|
dispose: {};
|
|
361
349
|
}[T]) => void) | undefined;
|
|
@@ -480,8 +468,8 @@ export declare class NgtsCatmullRomLine {
|
|
|
480
468
|
userData?: Record<string, any> | undefined;
|
|
481
469
|
customDepthMaterial?: import("three").Material | undefined;
|
|
482
470
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
483
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
484
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
471
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
472
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
485
473
|
onBeforeRender?: (((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) & ((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;
|
|
486
474
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
487
475
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -526,15 +514,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
526
514
|
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
527
515
|
clone?: (((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
528
516
|
copy?: (((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
529
|
-
hasEventListener?: ({
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
} & {
|
|
533
|
-
<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
534
|
-
dispose: {};
|
|
535
|
-
}[T], T, import("three-stdlib").LineMaterial>): boolean;
|
|
536
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").LineMaterial>): boolean;
|
|
537
|
-
}) | undefined;
|
|
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<{
|
|
518
|
+
dispose: {};
|
|
519
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean)) | undefined;
|
|
538
520
|
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> & {
|
|
539
521
|
dispose: {};
|
|
540
522
|
}[T]) => void)) | undefined;
|
|
@@ -43,8 +43,8 @@ export declare class NgtsEdges {
|
|
|
43
43
|
userData?: Record<string, any> | undefined;
|
|
44
44
|
customDepthMaterial?: import("three").Material | undefined;
|
|
45
45
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
46
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
47
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
46
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
47
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
48
48
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
49
49
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
50
50
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -89,10 +89,7 @@ export declare class NgtsEdges {
|
|
|
89
89
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
90
90
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
91
91
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
92
|
-
hasEventListener?:
|
|
93
|
-
<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;
|
|
94
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
95
|
-
} | undefined;
|
|
92
|
+
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;
|
|
96
93
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
97
94
|
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
98
95
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -139,8 +136,8 @@ export declare class NgtsEdges {
|
|
|
139
136
|
userData?: Record<string, any> | undefined;
|
|
140
137
|
customDepthMaterial?: import("three").Material | undefined;
|
|
141
138
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
142
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
143
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
139
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
140
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
144
141
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
145
142
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
146
143
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -185,10 +182,7 @@ export declare class NgtsEdges {
|
|
|
185
182
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
186
183
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
187
184
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
188
|
-
hasEventListener?:
|
|
189
|
-
<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>): boolean;
|
|
190
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
191
|
-
} | undefined;
|
|
185
|
+
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
192
186
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
193
187
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
194
188
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
@@ -226,12 +220,9 @@ export declare class NgtsEdges {
|
|
|
226
220
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
227
221
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
228
222
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
229
|
-
hasEventListener?: {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
}[T], T, import("three-stdlib").LineMaterial>): boolean;
|
|
233
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").LineMaterial>): boolean;
|
|
234
|
-
} | undefined;
|
|
223
|
+
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
224
|
+
dispose: {};
|
|
225
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
235
226
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
236
227
|
dispose: {};
|
|
237
228
|
}[T]) => void) | undefined;
|
|
@@ -352,8 +343,8 @@ export declare class NgtsEdges {
|
|
|
352
343
|
userData?: Record<string, any> | undefined;
|
|
353
344
|
customDepthMaterial?: import("three").Material | undefined;
|
|
354
345
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
355
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
356
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
346
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
347
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
357
348
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
358
349
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
359
350
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -398,10 +389,7 @@ export declare class NgtsEdges {
|
|
|
398
389
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
399
390
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
400
391
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
401
|
-
hasEventListener?:
|
|
402
|
-
<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;
|
|
403
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
404
|
-
} | undefined;
|
|
392
|
+
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;
|
|
405
393
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
406
394
|
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
407
395
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -448,8 +436,8 @@ export declare class NgtsEdges {
|
|
|
448
436
|
userData?: Record<string, any> | undefined;
|
|
449
437
|
customDepthMaterial?: import("three").Material | undefined;
|
|
450
438
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
451
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
452
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
439
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
440
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
453
441
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
454
442
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
455
443
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -494,10 +482,7 @@ export declare class NgtsEdges {
|
|
|
494
482
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
495
483
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
496
484
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
497
|
-
hasEventListener?:
|
|
498
|
-
<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>): boolean;
|
|
499
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
500
|
-
} | undefined;
|
|
485
|
+
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
501
486
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
502
487
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
503
488
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
@@ -535,12 +520,9 @@ export declare class NgtsEdges {
|
|
|
535
520
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
536
521
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
537
522
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
538
|
-
hasEventListener?: {
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
}[T], T, import("three-stdlib").LineMaterial>): boolean;
|
|
542
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").LineMaterial>): boolean;
|
|
543
|
-
} | undefined;
|
|
523
|
+
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
524
|
+
dispose: {};
|
|
525
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
544
526
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
545
527
|
dispose: {};
|
|
546
528
|
}[T]) => void) | undefined;
|
|
@@ -665,8 +647,8 @@ export declare class NgtsEdges {
|
|
|
665
647
|
userData?: Record<string, any> | undefined;
|
|
666
648
|
customDepthMaterial?: import("three").Material | undefined;
|
|
667
649
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
668
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
669
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
650
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
651
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
670
652
|
onBeforeRender?: (((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) & ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void)) | undefined;
|
|
671
653
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
672
654
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -711,18 +693,9 @@ export declare class NgtsEdges {
|
|
|
711
693
|
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
712
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;
|
|
713
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;
|
|
714
|
-
hasEventListener?: ({
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
} & {
|
|
718
|
-
<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>): boolean;
|
|
719
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
720
|
-
} & {
|
|
721
|
-
<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
722
|
-
dispose: {};
|
|
723
|
-
}[T], T, import("three-stdlib").LineMaterial>): boolean;
|
|
724
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").LineMaterial>): boolean;
|
|
725
|
-
}) | undefined;
|
|
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<{
|
|
697
|
+
dispose: {};
|
|
698
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean)) | undefined;
|
|
726
699
|
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> & {
|
|
727
700
|
dispose: {};
|
|
728
701
|
}[T]) => void)) | undefined;
|
|
@@ -30,8 +30,8 @@ export declare class NgtsGrid {
|
|
|
30
30
|
userData?: Record<string, any> | undefined;
|
|
31
31
|
customDepthMaterial?: import("three").Material | undefined;
|
|
32
32
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
33
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
34
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
33
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
34
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
35
35
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
36
36
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
37
37
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -76,10 +76,7 @@ export declare class NgtsGrid {
|
|
|
76
76
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
77
77
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
78
78
|
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
|
-
hasEventListener?:
|
|
80
|
-
<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;
|
|
81
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
82
|
-
} | undefined;
|
|
79
|
+
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;
|
|
83
80
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
84
81
|
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
85
82
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -128,8 +125,8 @@ export declare class NgtsGrid {
|
|
|
128
125
|
userData?: Record<string, any> | undefined;
|
|
129
126
|
customDepthMaterial?: import("three").Material | undefined;
|
|
130
127
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
131
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
132
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
128
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
129
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
133
130
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
134
131
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
135
132
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -174,10 +171,7 @@ export declare class NgtsGrid {
|
|
|
174
171
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
175
172
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
176
173
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
177
|
-
hasEventListener?:
|
|
178
|
-
<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;
|
|
179
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
180
|
-
} | undefined;
|
|
174
|
+
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;
|
|
181
175
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
182
176
|
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
183
177
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -227,8 +221,8 @@ export declare class NgtsGrid {
|
|
|
227
221
|
userData?: Record<string, any> | undefined;
|
|
228
222
|
customDepthMaterial?: import("three").Material | undefined;
|
|
229
223
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
230
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
231
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
224
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
225
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
232
226
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
233
227
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
234
228
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -273,10 +267,7 @@ export declare class NgtsGrid {
|
|
|
273
267
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
274
268
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
275
269
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
276
|
-
hasEventListener?:
|
|
277
|
-
<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;
|
|
278
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
279
|
-
} | undefined;
|
|
270
|
+
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;
|
|
280
271
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
281
272
|
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
282
273
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { NgtAttachable } from 'angular-three';
|
|
2
3
|
import { ExtrudeGeometry, ExtrudeGeometryOptions, Shape, Vector2 } from 'three';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export interface NgtsPrismGeometryOptions extends Omit<ExtrudeGeometryOptions, 'depth'> {
|
|
@@ -6,6 +7,7 @@ export interface NgtsPrismGeometryOptions extends Omit<ExtrudeGeometryOptions, '
|
|
|
6
7
|
height: number;
|
|
7
8
|
}
|
|
8
9
|
export declare class NgtsPrismGeometry {
|
|
10
|
+
attach: import("@angular/core").InputSignal<NgtAttachable>;
|
|
9
11
|
vertices: import("@angular/core").InputSignal<(Vector2 | [number, number])[]>;
|
|
10
12
|
options: import("@angular/core").InputSignalWithTransform<NgtsPrismGeometryOptions, "" | Partial<NgtsPrismGeometryOptions>>;
|
|
11
13
|
parameters: import("@angular/core").Signal<{
|
|
@@ -26,5 +28,5 @@ export declare class NgtsPrismGeometry {
|
|
|
26
28
|
geometryRef: import("@angular/core").Signal<ElementRef<ExtrudeGeometry> | undefined>;
|
|
27
29
|
constructor();
|
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsPrismGeometry, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsPrismGeometry, "ngts-prism-geometry", never, { "vertices": { "alias": "vertices"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsPrismGeometry, "ngts-prism-geometry", never, { "attach": { "alias": "attach"; "required": false; "isSignal": true; }; "vertices": { "alias": "vertices"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
30
32
|
}
|
|
@@ -37,8 +37,8 @@ export declare class NgtsText3D {
|
|
|
37
37
|
userData?: Record<string, any> | undefined;
|
|
38
38
|
customDepthMaterial?: import("three").Material | undefined;
|
|
39
39
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
40
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
41
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
40
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
41
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
42
42
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
43
43
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
44
44
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -83,10 +83,7 @@ export declare class NgtsText3D {
|
|
|
83
83
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
84
84
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
85
85
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
86
|
-
hasEventListener?:
|
|
87
|
-
<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;
|
|
88
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
89
|
-
} | undefined;
|
|
86
|
+
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;
|
|
90
87
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
91
88
|
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
92
89
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -133,8 +130,8 @@ export declare class NgtsText3D {
|
|
|
133
130
|
userData?: Record<string, any> | undefined;
|
|
134
131
|
customDepthMaterial?: import("three").Material | undefined;
|
|
135
132
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
136
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
137
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
133
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
134
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
138
135
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
139
136
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
140
137
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -179,10 +176,7 @@ export declare class NgtsText3D {
|
|
|
179
176
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
180
177
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
181
178
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
182
|
-
hasEventListener?:
|
|
183
|
-
<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;
|
|
184
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
185
|
-
} | undefined;
|
|
179
|
+
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;
|
|
186
180
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
187
181
|
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
188
182
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -230,8 +224,8 @@ export declare class NgtsText3D {
|
|
|
230
224
|
userData?: Record<string, any> | undefined;
|
|
231
225
|
customDepthMaterial?: import("three").Material | undefined;
|
|
232
226
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
233
|
-
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
234
|
-
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
227
|
+
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
228
|
+
onAfterShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
235
229
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
236
230
|
onAfterRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, material: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
237
231
|
applyMatrix4?: ((matrix: import("three").Matrix4) => void) | undefined;
|
|
@@ -276,10 +270,7 @@ export declare class NgtsText3D {
|
|
|
276
270
|
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
277
271
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
278
272
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
279
|
-
hasEventListener?:
|
|
280
|
-
<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;
|
|
281
|
-
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
282
|
-
} | undefined;
|
|
273
|
+
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;
|
|
283
274
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
284
275
|
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
285
276
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -9,6 +9,7 @@ const defaultOptions = {
|
|
|
9
9
|
};
|
|
10
10
|
export class NgtsPrismGeometry {
|
|
11
11
|
constructor() {
|
|
12
|
+
this.attach = input('geometry');
|
|
12
13
|
this.vertices = input.required();
|
|
13
14
|
this.options = input(defaultOptions, { transform: mergeInputs(defaultOptions) });
|
|
14
15
|
this.parameters = computed(() => ({ ...this.options(), depth: this.options().height }));
|
|
@@ -21,8 +22,8 @@ export class NgtsPrismGeometry {
|
|
|
21
22
|
extend({ ExtrudeGeometry });
|
|
22
23
|
}
|
|
23
24
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: NgtsPrismGeometry, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.0", type: NgtsPrismGeometry, isStandalone: true, selector: "ngts-prism-geometry", inputs: { vertices: { classPropertyName: "vertices", publicName: "vertices", isSignal: true, isRequired: true, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "geometryRef", first: true, predicate: ["geometry"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
25
|
-
<ngt-extrude-geometry #geometry *args="[shape(), parameters()]">
|
|
25
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.0", type: NgtsPrismGeometry, isStandalone: true, selector: "ngts-prism-geometry", inputs: { attach: { classPropertyName: "attach", publicName: "attach", isSignal: true, isRequired: false, transformFunction: null }, vertices: { classPropertyName: "vertices", publicName: "vertices", isSignal: true, isRequired: true, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "geometryRef", first: true, predicate: ["geometry"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
26
|
+
<ngt-extrude-geometry #geometry *args="[shape(), parameters()]" [attach]="attach()">
|
|
26
27
|
<ng-content />
|
|
27
28
|
</ngt-extrude-geometry>
|
|
28
29
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgtArgs, selector: "ng-template[args]", inputs: ["args"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -33,7 +34,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
33
34
|
selector: 'ngts-prism-geometry',
|
|
34
35
|
standalone: true,
|
|
35
36
|
template: `
|
|
36
|
-
<ngt-extrude-geometry #geometry *args="[shape(), parameters()]">
|
|
37
|
+
<ngt-extrude-geometry #geometry *args="[shape(), parameters()]" [attach]="attach()">
|
|
37
38
|
<ng-content />
|
|
38
39
|
</ngt-extrude-geometry>
|
|
39
40
|
`,
|
|
@@ -42,4 +43,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
42
43
|
imports: [NgtArgs],
|
|
43
44
|
}]
|
|
44
45
|
}], ctorParameters: () => [] });
|
|
45
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJpc20tZ2VvbWV0cnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3NvYmEvYWJzdHJhY3Rpb25zL3NyYy9saWIvcHJpc20tZ2VvbWV0cnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNOLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsUUFBUSxFQUNSLHNCQUFzQixFQUV0QixLQUFLLEVBQ0wsU0FBUyxHQUNULE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxNQUFNLEVBQUUsT0FBTyxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDdkQsT0FBTyxFQUFFLGVBQWUsRUFBMEIsS0FBSyxFQUFFLE9BQU8sRUFBRSxNQUFNLE9BQU8sQ0FBQzs7QUFPaEYsTUFBTSxjQUFjLEdBQTZCO0lBQ2hELE1BQU0sRUFBRSxDQUFDO0lBQ1QsWUFBWSxFQUFFLEtBQUs7Q0FDbkIsQ0FBQztBQWNGLE1BQU0sT0FBTyxpQkFBaUI7SUFjN0I7UUFiQSxXQUFNLEdBQUcsS0FBSyxDQUFnQixVQUFVLENBQUMsQ0FBQztRQUMxQyxhQUFRLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBcUMsQ0FBQztRQUMvRCxZQUFPLEdBQUcsS0FBSyxDQUFDLGNBQWMsRUFBRSxFQUFFLFNBQVMsRUFBRSxXQUFXLENBQUMsY0FBYyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBRTVFLGVBQVUsR0FBRyxRQUFRLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxFQUFFLEdBQUcsSUFBSSxDQUFDLE9BQU8sRUFBRSxFQUFFLEtBQUssRUFBRSxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsTUFBTSxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQ25GLFVBQUssR0FBRyxRQUFRLENBQUMsR0FBRyxFQUFFO1lBQ3JCLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUNqQyxNQUFNLG9CQUFvQixHQUFHLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxZQUFZLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUNqRyxPQUFPLElBQUksS0FBSyxDQUFDLG9CQUFvQixDQUFDLENBQUM7UUFDeEMsQ0FBQyxDQUFDLENBQUM7UUFFSCxnQkFBVyxHQUFHLFNBQVMsQ0FBOEIsVUFBVSxDQUFDLENBQUM7UUFHaEUsTUFBTSxDQUFDLEVBQUUsZUFBZSxFQUFFLENBQUMsQ0FBQztJQUM3QixDQUFDOzhHQWhCVyxpQkFBaUI7a0dBQWpCLGlCQUFpQiw2a0JBVG5COzs7O0VBSVQsNERBR1MsT0FBTzs7MkZBRUwsaUJBQWlCO2tCQVo3QixTQUFTO21CQUFDO29CQUNWLFFBQVEsRUFBRSxxQkFBcUI7b0JBQy9CLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUU7Ozs7RUFJVDtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztvQkFDakMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLE9BQU8sQ0FBQztpQkFDbEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuXHRDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcblx0Q29tcG9uZW50LFxuXHRjb21wdXRlZCxcblx0Q1VTVE9NX0VMRU1FTlRTX1NDSEVNQSxcblx0RWxlbWVudFJlZixcblx0aW5wdXQsXG5cdHZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBleHRlbmQsIE5ndEFyZ3MsIE5ndEF0dGFjaGFibGUgfSBmcm9tICdhbmd1bGFyLXRocmVlJztcbmltcG9ydCB7IG1lcmdlSW5wdXRzIH0gZnJvbSAnbmd4dGVuc2lvbi9pbmplY3QtaW5wdXRzJztcbmltcG9ydCB7IEV4dHJ1ZGVHZW9tZXRyeSwgRXh0cnVkZUdlb21ldHJ5T3B0aW9ucywgU2hhcGUsIFZlY3RvcjIgfSBmcm9tICd0aHJlZSc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgTmd0c1ByaXNtR2VvbWV0cnlPcHRpb25zIGV4dGVuZHMgT21pdDxFeHRydWRlR2VvbWV0cnlPcHRpb25zLCAnZGVwdGgnPiB7XG5cdC8qKiBIZWlnaHQgKi9cblx0aGVpZ2h0OiBudW1iZXI7XG59XG5cbmNvbnN0IGRlZmF1bHRPcHRpb25zOiBOZ3RzUHJpc21HZW9tZXRyeU9wdGlvbnMgPSB7XG5cdGhlaWdodDogMSxcblx0YmV2ZWxFbmFibGVkOiBmYWxzZSxcbn07XG5cbkBDb21wb25lbnQoe1xuXHRzZWxlY3RvcjogJ25ndHMtcHJpc20tZ2VvbWV0cnknLFxuXHRzdGFuZGFsb25lOiB0cnVlLFxuXHR0ZW1wbGF0ZTogYFxuXHRcdDxuZ3QtZXh0cnVkZS1nZW9tZXRyeSAjZ2VvbWV0cnkgKmFyZ3M9XCJbc2hhcGUoKSwgcGFyYW1ldGVycygpXVwiIFthdHRhY2hdPVwiYXR0YWNoKClcIj5cblx0XHRcdDxuZy1jb250ZW50IC8+XG5cdFx0PC9uZ3QtZXh0cnVkZS1nZW9tZXRyeT5cblx0YCxcblx0c2NoZW1hczogW0NVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxuXHRjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcblx0aW1wb3J0czogW05ndEFyZ3NdLFxufSlcbmV4cG9ydCBjbGFzcyBOZ3RzUHJpc21HZW9tZXRyeSB7XG5cdGF0dGFjaCA9IGlucHV0PE5ndEF0dGFjaGFibGU+KCdnZW9tZXRyeScpO1xuXHR2ZXJ0aWNlcyA9IGlucHV0LnJlcXVpcmVkPEFycmF5PFZlY3RvcjIgfCBbbnVtYmVyLCBudW1iZXJdPj4oKTtcblx0b3B0aW9ucyA9IGlucHV0KGRlZmF1bHRPcHRpb25zLCB7IHRyYW5zZm9ybTogbWVyZ2VJbnB1dHMoZGVmYXVsdE9wdGlvbnMpIH0pO1xuXG5cdHBhcmFtZXRlcnMgPSBjb21wdXRlZCgoKSA9PiAoeyAuLi50aGlzLm9wdGlvbnMoKSwgZGVwdGg6IHRoaXMub3B0aW9ucygpLmhlaWdodCB9KSk7XG5cdHNoYXBlID0gY29tcHV0ZWQoKCkgPT4ge1xuXHRcdGNvbnN0IHZlcnRpY2VzID0gdGhpcy52ZXJ0aWNlcygpO1xuXHRcdGNvbnN0IGludGVycG9sYXRlZFZlcnRpY2VzID0gdmVydGljZXMubWFwKCh2KSA9PiAodiBpbnN0YW5jZW9mIFZlY3RvcjIgPyB2IDogbmV3IFZlY3RvcjIoLi4udikpKTtcblx0XHRyZXR1cm4gbmV3IFNoYXBlKGludGVycG9sYXRlZFZlcnRpY2VzKTtcblx0fSk7XG5cblx0Z2VvbWV0cnlSZWYgPSB2aWV3Q2hpbGQ8RWxlbWVudFJlZjxFeHRydWRlR2VvbWV0cnk+PignZ2VvbWV0cnknKTtcblxuXHRjb25zdHJ1Y3RvcigpIHtcblx0XHRleHRlbmQoeyBFeHRydWRlR2VvbWV0cnkgfSk7XG5cdH1cbn1cbiJdfQ==
|