angular-three-soba 2.0.0-beta.270 → 2.0.0-beta.271
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/index.d.ts +1 -0
- package/abstractions/lib/catmull-rom-line.d.ts +183 -183
- package/abstractions/lib/edges.d.ts +192 -192
- package/abstractions/lib/grid.d.ts +15 -15
- package/abstractions/lib/line.d.ts +2 -2
- package/abstractions/lib/rounded-box.d.ts +41 -0
- package/abstractions/lib/text-3d.d.ts +15 -15
- package/abstractions/lib/text.d.ts +1 -1
- package/controls/README.md +4 -3
- package/esm2022/abstractions/index.mjs +2 -1
- package/esm2022/abstractions/lib/rounded-box.mjs +111 -0
- package/esm2022/materials/lib/mesh-distort-material.mjs +2 -2
- package/esm2022/misc/index.mjs +2 -1
- package/esm2022/misc/lib/decal.mjs +19 -15
- package/esm2022/misc/lib/intersect.mjs +53 -0
- package/esm2022/performances/index.mjs +2 -1
- package/esm2022/performances/lib/detailed.mjs +57 -0
- package/esm2022/stats/angular-three-soba-stats.mjs +5 -0
- package/esm2022/stats/index.mjs +2 -0
- package/esm2022/stats/lib/stats.mjs +63 -0
- package/fesm2022/angular-three-soba-abstractions.mjs +122 -18
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +1 -2
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +69 -17
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-performances.mjs +56 -5
- package/fesm2022/angular-three-soba-performances.mjs.map +1 -1
- package/fesm2022/angular-three-soba-stats.mjs +70 -0
- package/fesm2022/angular-three-soba-stats.mjs.map +1 -0
- package/materials/lib/mesh-distort-material.d.ts +1 -2
- package/materials/lib/mesh-refraction-material.d.ts +1 -1
- package/misc/index.d.ts +1 -0
- package/misc/lib/decal.d.ts +3 -3
- package/misc/lib/intersect.d.ts +13 -0
- package/package.json +20 -15
- package/performances/index.d.ts +1 -0
- package/performances/lib/detailed.d.ts +17 -0
- package/performances/lib/instances/instances.d.ts +11 -11
- package/performances/lib/points/points.d.ts +23 -23
- package/performances/lib/segments/segments.d.ts +4 -4
- package/shaders/lib/mesh-refraction-material.d.ts +2 -2
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/center.d.ts +10 -10
- package/staging/lib/lightformer.d.ts +6 -6
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/sky.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +1 -1
- package/staging/lib/stage.d.ts +11 -11
- package/stats/README.md +3 -0
- package/stats/index.d.ts +1 -0
- package/stats/lib/stats.d.ts +14 -0
|
@@ -15,11 +15,68 @@ export declare class NgtsEdges {
|
|
|
15
15
|
private parameters;
|
|
16
16
|
protected lineOptions: import("@angular/core").Signal<{
|
|
17
17
|
raycast: () => null;
|
|
18
|
+
color?: ColorRepresentation | undefined;
|
|
19
|
+
alphaToCoverage?: boolean | undefined;
|
|
20
|
+
dashed?: boolean | undefined;
|
|
21
|
+
dashScale?: number | undefined;
|
|
22
|
+
dashSize?: number | undefined;
|
|
23
|
+
dashOffset?: number | undefined;
|
|
24
|
+
gapSize?: number | undefined;
|
|
25
|
+
linewidth?: number | undefined;
|
|
26
|
+
resolution?: import("three").Vector2 | undefined;
|
|
27
|
+
wireframe?: boolean | undefined;
|
|
28
|
+
worldUnits?: boolean | undefined;
|
|
29
|
+
alphaHash?: boolean | undefined;
|
|
30
|
+
alphaTest?: number | undefined;
|
|
31
|
+
blendAlpha?: number | undefined;
|
|
32
|
+
blendColor?: ColorRepresentation | undefined;
|
|
33
|
+
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
34
|
+
blendDstAlpha?: number | undefined;
|
|
35
|
+
blendEquation?: import("three").BlendingEquation | undefined;
|
|
36
|
+
blendEquationAlpha?: number | undefined;
|
|
37
|
+
blending?: import("three").Blending | undefined;
|
|
38
|
+
blendSrc?: import("three").BlendingSrcFactor | import("three").BlendingDstFactor | undefined;
|
|
39
|
+
blendSrcAlpha?: number | undefined;
|
|
40
|
+
clipIntersection?: boolean | undefined;
|
|
41
|
+
clippingPlanes?: import("three").Plane[] | undefined;
|
|
42
|
+
clipShadows?: boolean | undefined;
|
|
43
|
+
colorWrite?: boolean | undefined;
|
|
44
|
+
defines?: any;
|
|
45
|
+
depthFunc?: import("three").DepthModes | undefined;
|
|
46
|
+
depthTest?: boolean | undefined;
|
|
47
|
+
depthWrite?: boolean | undefined;
|
|
48
|
+
name?: string | undefined;
|
|
49
|
+
opacity?: number | undefined;
|
|
50
|
+
polygonOffset?: boolean | undefined;
|
|
51
|
+
polygonOffsetFactor?: number | undefined;
|
|
52
|
+
polygonOffsetUnits?: number | undefined;
|
|
53
|
+
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
54
|
+
premultipliedAlpha?: boolean | undefined;
|
|
55
|
+
forceSinglePass?: boolean | undefined;
|
|
56
|
+
dithering?: boolean | undefined;
|
|
57
|
+
side?: import("three").Side | undefined;
|
|
58
|
+
shadowSide?: 0 | 2 | 1 | undefined;
|
|
59
|
+
toneMapped?: boolean | undefined;
|
|
60
|
+
transparent?: boolean | undefined;
|
|
61
|
+
visible?: boolean | undefined;
|
|
62
|
+
format?: import("three").PixelFormat | undefined;
|
|
63
|
+
stencilWrite?: boolean | undefined;
|
|
64
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
65
|
+
stencilRef?: number | undefined;
|
|
66
|
+
stencilWriteMask?: number | undefined;
|
|
67
|
+
stencilFuncMask?: number | undefined;
|
|
68
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
69
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
70
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
71
|
+
userData?: Record<string, any> | undefined;
|
|
18
72
|
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
19
|
-
addEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").
|
|
73
|
+
addEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
74
|
+
name?: string | undefined;
|
|
75
|
+
visible?: boolean | undefined;
|
|
76
|
+
userData?: Record<string, any> | undefined;
|
|
20
77
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
21
78
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & any;
|
|
22
|
-
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").
|
|
79
|
+
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);
|
|
23
80
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
24
81
|
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
25
82
|
material?: import("three").Material | import("three").Material[] | undefined;
|
|
@@ -34,7 +91,6 @@ export declare class NgtsEdges {
|
|
|
34
91
|
readonly isObject3D?: true | undefined;
|
|
35
92
|
readonly id?: number | undefined;
|
|
36
93
|
uuid?: string | undefined;
|
|
37
|
-
name?: string | undefined;
|
|
38
94
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
39
95
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
40
96
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -43,13 +99,11 @@ export declare class NgtsEdges {
|
|
|
43
99
|
matrixAutoUpdate?: boolean | undefined;
|
|
44
100
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
45
101
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
46
|
-
visible?: boolean | undefined;
|
|
47
102
|
castShadow?: boolean | undefined;
|
|
48
103
|
receiveShadow?: boolean | undefined;
|
|
49
104
|
frustumCulled?: boolean | undefined;
|
|
50
105
|
renderOrder?: number | undefined;
|
|
51
106
|
animations?: import("three").AnimationClip[] | undefined;
|
|
52
|
-
userData?: Record<string, any> | undefined;
|
|
53
107
|
customDepthMaterial?: import("three").Material | undefined;
|
|
54
108
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
55
109
|
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;
|
|
@@ -117,10 +171,13 @@ export declare class NgtsEdges {
|
|
|
117
171
|
quaternion: import("angular-three").NgtQuaternion;
|
|
118
172
|
layers: import("angular-three").NgtLayers;
|
|
119
173
|
dispose: (() => void) | null;
|
|
120
|
-
}, ev: import("angular-three").
|
|
174
|
+
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
175
|
+
name?: string | undefined;
|
|
176
|
+
visible?: boolean | undefined;
|
|
177
|
+
userData?: Record<string, any> | undefined;
|
|
121
178
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
122
179
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & any;
|
|
123
|
-
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").
|
|
180
|
+
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);
|
|
124
181
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
125
182
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
126
183
|
material?: import("three-stdlib").LineMaterial | undefined;
|
|
@@ -138,7 +195,6 @@ export declare class NgtsEdges {
|
|
|
138
195
|
readonly isObject3D?: true | undefined;
|
|
139
196
|
readonly id?: number | undefined;
|
|
140
197
|
uuid?: string | undefined;
|
|
141
|
-
name?: string | undefined;
|
|
142
198
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
143
199
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
144
200
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -147,13 +203,11 @@ export declare class NgtsEdges {
|
|
|
147
203
|
matrixAutoUpdate?: boolean | undefined;
|
|
148
204
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
149
205
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
150
|
-
visible?: boolean | undefined;
|
|
151
206
|
castShadow?: boolean | undefined;
|
|
152
207
|
receiveShadow?: boolean | undefined;
|
|
153
208
|
frustumCulled?: boolean | undefined;
|
|
154
209
|
renderOrder?: number | undefined;
|
|
155
210
|
animations?: import("three").AnimationClip[] | undefined;
|
|
156
|
-
userData?: Record<string, any> | undefined;
|
|
157
211
|
customDepthMaterial?: import("three").Material | undefined;
|
|
158
212
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
159
213
|
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;
|
|
@@ -221,17 +275,70 @@ export declare class NgtsEdges {
|
|
|
221
275
|
quaternion: import("angular-three").NgtQuaternion;
|
|
222
276
|
layers: import("angular-three").NgtLayers;
|
|
223
277
|
dispose: (() => void) | null;
|
|
224
|
-
}, ev: import("angular-three").
|
|
278
|
+
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
279
|
+
vertexColors?: boolean | undefined;
|
|
280
|
+
color?: ColorRepresentation | undefined;
|
|
281
|
+
alphaToCoverage?: boolean | undefined;
|
|
282
|
+
dashed?: boolean | undefined;
|
|
283
|
+
dashScale?: number | undefined;
|
|
284
|
+
dashSize?: number | undefined;
|
|
285
|
+
dashOffset?: number | undefined;
|
|
286
|
+
gapSize?: number | undefined;
|
|
287
|
+
linewidth?: number | undefined;
|
|
288
|
+
resolution?: import("three").Vector2 | undefined;
|
|
289
|
+
wireframe?: boolean | undefined;
|
|
290
|
+
worldUnits?: boolean | undefined;
|
|
291
|
+
alphaHash?: boolean | undefined;
|
|
292
|
+
alphaTest?: number | undefined;
|
|
293
|
+
blendAlpha?: number | undefined;
|
|
294
|
+
blendColor?: ColorRepresentation | undefined;
|
|
295
|
+
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
296
|
+
blendDstAlpha?: number | null | undefined;
|
|
297
|
+
blendEquation?: import("three").BlendingEquation | undefined;
|
|
298
|
+
blendEquationAlpha?: number | null | undefined;
|
|
299
|
+
blending?: import("three").Blending | undefined;
|
|
300
|
+
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
301
|
+
blendSrcAlpha?: number | null | undefined;
|
|
302
|
+
clipIntersection?: boolean | undefined;
|
|
303
|
+
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
304
|
+
clipShadows?: boolean | undefined;
|
|
305
|
+
colorWrite?: boolean | undefined;
|
|
306
|
+
defines?: {
|
|
307
|
+
[key: string]: any;
|
|
308
|
+
} | undefined;
|
|
309
|
+
depthFunc?: import("three").DepthModes | undefined;
|
|
310
|
+
depthTest?: boolean | undefined;
|
|
311
|
+
depthWrite?: boolean | undefined;
|
|
312
|
+
name?: string | undefined;
|
|
313
|
+
opacity?: number | undefined;
|
|
314
|
+
polygonOffset?: boolean | undefined;
|
|
315
|
+
polygonOffsetFactor?: number | undefined;
|
|
316
|
+
polygonOffsetUnits?: number | undefined;
|
|
317
|
+
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
318
|
+
premultipliedAlpha?: boolean | undefined;
|
|
319
|
+
forceSinglePass?: boolean | undefined;
|
|
320
|
+
dithering?: boolean | undefined;
|
|
321
|
+
side?: import("three").Side | undefined;
|
|
322
|
+
shadowSide?: import("three").Side | null | undefined;
|
|
323
|
+
toneMapped?: boolean | undefined;
|
|
324
|
+
transparent?: boolean | undefined;
|
|
325
|
+
visible?: boolean | undefined;
|
|
326
|
+
stencilWrite?: boolean | undefined;
|
|
327
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
328
|
+
stencilRef?: number | undefined;
|
|
329
|
+
stencilWriteMask?: number | undefined;
|
|
330
|
+
stencilFuncMask?: number | undefined;
|
|
331
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
332
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
333
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
334
|
+
userData?: Record<string, any> | undefined;
|
|
225
335
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
226
336
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
227
|
-
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").
|
|
337
|
+
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);
|
|
228
338
|
__ngt_args__: [LineMaterialParameters];
|
|
229
339
|
type?: string | undefined;
|
|
230
340
|
id?: number | undefined;
|
|
231
341
|
uuid?: string | undefined;
|
|
232
|
-
name?: string | undefined;
|
|
233
|
-
visible?: boolean | undefined;
|
|
234
|
-
userData?: Record<string, any> | undefined;
|
|
235
342
|
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;
|
|
236
343
|
toJSON?: ((meta: any) => any) | undefined;
|
|
237
344
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
@@ -245,29 +352,14 @@ export declare class NgtsEdges {
|
|
|
245
352
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
246
353
|
dispose: {};
|
|
247
354
|
}[T]) => void) | undefined;
|
|
248
|
-
color?: ColorRepresentation | undefined;
|
|
249
|
-
dashed?: boolean | undefined;
|
|
250
|
-
dashScale?: number | undefined;
|
|
251
|
-
dashSize?: number | undefined;
|
|
252
|
-
dashOffset?: number | undefined;
|
|
253
|
-
gapSize?: number | undefined;
|
|
254
|
-
opacity?: number | undefined;
|
|
255
355
|
readonly isLineMaterial?: true | undefined;
|
|
256
|
-
linewidth?: number | undefined;
|
|
257
|
-
resolution?: import("three").Vector2 | undefined;
|
|
258
|
-
alphaToCoverage?: boolean | undefined;
|
|
259
|
-
worldUnits?: boolean | undefined;
|
|
260
356
|
readonly isShaderMaterial?: true | undefined;
|
|
261
|
-
defines?: {
|
|
262
|
-
[key: string]: any;
|
|
263
|
-
} | undefined;
|
|
264
357
|
uniforms?: {
|
|
265
358
|
[uniform: string]: import("three").IUniform<any>;
|
|
266
359
|
} | undefined;
|
|
267
360
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
268
361
|
vertexShader?: string | undefined;
|
|
269
362
|
fragmentShader?: string | undefined;
|
|
270
|
-
wireframe?: boolean | undefined;
|
|
271
363
|
wireframeLinewidth?: number | undefined;
|
|
272
364
|
fog?: boolean | undefined;
|
|
273
365
|
lights?: boolean | undefined;
|
|
@@ -282,45 +374,7 @@ export declare class NgtsEdges {
|
|
|
282
374
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
283
375
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
284
376
|
readonly isMaterial?: true | undefined;
|
|
285
|
-
alphaHash?: boolean | undefined;
|
|
286
|
-
blendAlpha?: number | undefined;
|
|
287
|
-
blendColor?: ColorRepresentation | undefined;
|
|
288
|
-
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
289
|
-
blendDstAlpha?: number | null | undefined;
|
|
290
|
-
blendEquation?: import("three").BlendingEquation | undefined;
|
|
291
|
-
blendEquationAlpha?: number | null | undefined;
|
|
292
|
-
blending?: import("three").Blending | undefined;
|
|
293
|
-
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
294
|
-
blendSrcAlpha?: number | null | undefined;
|
|
295
|
-
clipIntersection?: boolean | undefined;
|
|
296
|
-
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
297
|
-
clipShadows?: boolean | undefined;
|
|
298
|
-
colorWrite?: boolean | undefined;
|
|
299
|
-
depthFunc?: import("three").DepthModes | undefined;
|
|
300
|
-
depthTest?: boolean | undefined;
|
|
301
|
-
depthWrite?: boolean | undefined;
|
|
302
|
-
stencilWrite?: boolean | undefined;
|
|
303
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
304
|
-
stencilRef?: number | undefined;
|
|
305
|
-
stencilWriteMask?: number | undefined;
|
|
306
|
-
stencilFuncMask?: number | undefined;
|
|
307
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
308
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
309
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
310
|
-
polygonOffset?: boolean | undefined;
|
|
311
|
-
polygonOffsetFactor?: number | undefined;
|
|
312
|
-
polygonOffsetUnits?: number | undefined;
|
|
313
|
-
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
314
|
-
premultipliedAlpha?: boolean | undefined;
|
|
315
|
-
forceSinglePass?: boolean | undefined;
|
|
316
|
-
dithering?: boolean | undefined;
|
|
317
|
-
side?: import("three").Side | undefined;
|
|
318
|
-
shadowSide?: import("three").Side | null | undefined;
|
|
319
|
-
toneMapped?: boolean | undefined;
|
|
320
|
-
transparent?: boolean | undefined;
|
|
321
|
-
vertexColors?: boolean | undefined;
|
|
322
377
|
version?: number | undefined;
|
|
323
|
-
alphaTest?: number | undefined;
|
|
324
378
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
325
379
|
customProgramCacheKey?: (() => string) | undefined;
|
|
326
380
|
needsUpdate?: boolean | undefined;
|
|
@@ -333,10 +387,13 @@ export declare class NgtsEdges {
|
|
|
333
387
|
quaternion: import("angular-three").NgtQuaternion;
|
|
334
388
|
layers: import("angular-three").NgtLayers;
|
|
335
389
|
dispose: (() => void) | null;
|
|
336
|
-
}, ev: import("angular-three").
|
|
337
|
-
removeEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").
|
|
390
|
+
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
391
|
+
removeEventListener?: ((<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
392
|
+
name?: string | undefined;
|
|
393
|
+
visible?: boolean | undefined;
|
|
394
|
+
userData?: Record<string, any> | undefined;
|
|
338
395
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
339
|
-
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").
|
|
396
|
+
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
340
397
|
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;
|
|
341
398
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
342
399
|
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
@@ -352,7 +409,6 @@ export declare class NgtsEdges {
|
|
|
352
409
|
readonly isObject3D?: true | undefined;
|
|
353
410
|
readonly id?: number | undefined;
|
|
354
411
|
uuid?: string | undefined;
|
|
355
|
-
name?: string | undefined;
|
|
356
412
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
357
413
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
358
414
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -361,13 +417,11 @@ export declare class NgtsEdges {
|
|
|
361
417
|
matrixAutoUpdate?: boolean | undefined;
|
|
362
418
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
363
419
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
364
|
-
visible?: boolean | undefined;
|
|
365
420
|
castShadow?: boolean | undefined;
|
|
366
421
|
receiveShadow?: boolean | undefined;
|
|
367
422
|
frustumCulled?: boolean | undefined;
|
|
368
423
|
renderOrder?: number | undefined;
|
|
369
424
|
animations?: import("three").AnimationClip[] | undefined;
|
|
370
|
-
userData?: Record<string, any> | undefined;
|
|
371
425
|
customDepthMaterial?: import("three").Material | undefined;
|
|
372
426
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
373
427
|
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;
|
|
@@ -435,9 +489,12 @@ export declare class NgtsEdges {
|
|
|
435
489
|
quaternion: import("angular-three").NgtQuaternion;
|
|
436
490
|
layers: import("angular-three").NgtLayers;
|
|
437
491
|
dispose: (() => void) | null;
|
|
438
|
-
}, ev: import("angular-three").
|
|
492
|
+
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
493
|
+
name?: string | undefined;
|
|
494
|
+
visible?: boolean | undefined;
|
|
495
|
+
userData?: Record<string, any> | undefined;
|
|
439
496
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
440
|
-
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").
|
|
497
|
+
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
441
498
|
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;
|
|
442
499
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
443
500
|
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
@@ -456,7 +513,6 @@ export declare class NgtsEdges {
|
|
|
456
513
|
readonly isObject3D?: true | undefined;
|
|
457
514
|
readonly id?: number | undefined;
|
|
458
515
|
uuid?: string | undefined;
|
|
459
|
-
name?: string | undefined;
|
|
460
516
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
461
517
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
462
518
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -465,13 +521,11 @@ export declare class NgtsEdges {
|
|
|
465
521
|
matrixAutoUpdate?: boolean | undefined;
|
|
466
522
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
467
523
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
468
|
-
visible?: boolean | undefined;
|
|
469
524
|
castShadow?: boolean | undefined;
|
|
470
525
|
receiveShadow?: boolean | undefined;
|
|
471
526
|
frustumCulled?: boolean | undefined;
|
|
472
527
|
renderOrder?: number | undefined;
|
|
473
528
|
animations?: import("three").AnimationClip[] | undefined;
|
|
474
|
-
userData?: Record<string, any> | undefined;
|
|
475
529
|
customDepthMaterial?: import("three").Material | undefined;
|
|
476
530
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
477
531
|
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;
|
|
@@ -539,17 +593,70 @@ export declare class NgtsEdges {
|
|
|
539
593
|
quaternion: import("angular-three").NgtQuaternion;
|
|
540
594
|
layers: import("angular-three").NgtLayers;
|
|
541
595
|
dispose: (() => void) | null;
|
|
542
|
-
}, ev: import("angular-three").
|
|
596
|
+
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
597
|
+
vertexColors?: boolean | undefined;
|
|
598
|
+
color?: ColorRepresentation | undefined;
|
|
599
|
+
alphaToCoverage?: boolean | undefined;
|
|
600
|
+
dashed?: boolean | undefined;
|
|
601
|
+
dashScale?: number | undefined;
|
|
602
|
+
dashSize?: number | undefined;
|
|
603
|
+
dashOffset?: number | undefined;
|
|
604
|
+
gapSize?: number | undefined;
|
|
605
|
+
linewidth?: number | undefined;
|
|
606
|
+
resolution?: import("three").Vector2 | undefined;
|
|
607
|
+
wireframe?: boolean | undefined;
|
|
608
|
+
worldUnits?: boolean | undefined;
|
|
609
|
+
alphaHash?: boolean | undefined;
|
|
610
|
+
alphaTest?: number | undefined;
|
|
611
|
+
blendAlpha?: number | undefined;
|
|
612
|
+
blendColor?: ColorRepresentation | undefined;
|
|
613
|
+
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
614
|
+
blendDstAlpha?: number | null | undefined;
|
|
615
|
+
blendEquation?: import("three").BlendingEquation | undefined;
|
|
616
|
+
blendEquationAlpha?: number | null | undefined;
|
|
617
|
+
blending?: import("three").Blending | undefined;
|
|
618
|
+
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
619
|
+
blendSrcAlpha?: number | null | undefined;
|
|
620
|
+
clipIntersection?: boolean | undefined;
|
|
621
|
+
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
622
|
+
clipShadows?: boolean | undefined;
|
|
623
|
+
colorWrite?: boolean | undefined;
|
|
624
|
+
defines?: {
|
|
625
|
+
[key: string]: any;
|
|
626
|
+
} | undefined;
|
|
627
|
+
depthFunc?: import("three").DepthModes | undefined;
|
|
628
|
+
depthTest?: boolean | undefined;
|
|
629
|
+
depthWrite?: boolean | undefined;
|
|
630
|
+
name?: string | undefined;
|
|
631
|
+
opacity?: number | undefined;
|
|
632
|
+
polygonOffset?: boolean | undefined;
|
|
633
|
+
polygonOffsetFactor?: number | undefined;
|
|
634
|
+
polygonOffsetUnits?: number | undefined;
|
|
635
|
+
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
636
|
+
premultipliedAlpha?: boolean | undefined;
|
|
637
|
+
forceSinglePass?: boolean | undefined;
|
|
638
|
+
dithering?: boolean | undefined;
|
|
639
|
+
side?: import("three").Side | undefined;
|
|
640
|
+
shadowSide?: import("three").Side | null | undefined;
|
|
641
|
+
toneMapped?: boolean | undefined;
|
|
642
|
+
transparent?: boolean | undefined;
|
|
643
|
+
visible?: boolean | undefined;
|
|
644
|
+
stencilWrite?: boolean | undefined;
|
|
645
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
646
|
+
stencilRef?: number | undefined;
|
|
647
|
+
stencilWriteMask?: number | undefined;
|
|
648
|
+
stencilFuncMask?: number | undefined;
|
|
649
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
650
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
651
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
652
|
+
userData?: Record<string, any> | undefined;
|
|
543
653
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
544
|
-
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").
|
|
654
|
+
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
545
655
|
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;
|
|
546
656
|
__ngt_args__: [LineMaterialParameters];
|
|
547
657
|
type?: string | undefined;
|
|
548
658
|
id?: number | undefined;
|
|
549
659
|
uuid?: string | undefined;
|
|
550
|
-
name?: string | undefined;
|
|
551
|
-
visible?: boolean | undefined;
|
|
552
|
-
userData?: Record<string, any> | undefined;
|
|
553
660
|
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;
|
|
554
661
|
toJSON?: ((meta: any) => any) | undefined;
|
|
555
662
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
@@ -563,29 +670,14 @@ export declare class NgtsEdges {
|
|
|
563
670
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
564
671
|
dispose: {};
|
|
565
672
|
}[T]) => void) | undefined;
|
|
566
|
-
color?: ColorRepresentation | undefined;
|
|
567
|
-
dashed?: boolean | undefined;
|
|
568
|
-
dashScale?: number | undefined;
|
|
569
|
-
dashSize?: number | undefined;
|
|
570
|
-
dashOffset?: number | undefined;
|
|
571
|
-
gapSize?: number | undefined;
|
|
572
|
-
opacity?: number | undefined;
|
|
573
673
|
readonly isLineMaterial?: true | undefined;
|
|
574
|
-
linewidth?: number | undefined;
|
|
575
|
-
resolution?: import("three").Vector2 | undefined;
|
|
576
|
-
alphaToCoverage?: boolean | undefined;
|
|
577
|
-
worldUnits?: boolean | undefined;
|
|
578
674
|
readonly isShaderMaterial?: true | undefined;
|
|
579
|
-
defines?: {
|
|
580
|
-
[key: string]: any;
|
|
581
|
-
} | undefined;
|
|
582
675
|
uniforms?: {
|
|
583
676
|
[uniform: string]: import("three").IUniform<any>;
|
|
584
677
|
} | undefined;
|
|
585
678
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
586
679
|
vertexShader?: string | undefined;
|
|
587
680
|
fragmentShader?: string | undefined;
|
|
588
|
-
wireframe?: boolean | undefined;
|
|
589
681
|
wireframeLinewidth?: number | undefined;
|
|
590
682
|
fog?: boolean | undefined;
|
|
591
683
|
lights?: boolean | undefined;
|
|
@@ -600,45 +692,7 @@ export declare class NgtsEdges {
|
|
|
600
692
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
601
693
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
602
694
|
readonly isMaterial?: true | undefined;
|
|
603
|
-
alphaHash?: boolean | undefined;
|
|
604
|
-
blendAlpha?: number | undefined;
|
|
605
|
-
blendColor?: ColorRepresentation | undefined;
|
|
606
|
-
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
607
|
-
blendDstAlpha?: number | null | undefined;
|
|
608
|
-
blendEquation?: import("three").BlendingEquation | undefined;
|
|
609
|
-
blendEquationAlpha?: number | null | undefined;
|
|
610
|
-
blending?: import("three").Blending | undefined;
|
|
611
|
-
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
612
|
-
blendSrcAlpha?: number | null | undefined;
|
|
613
|
-
clipIntersection?: boolean | undefined;
|
|
614
|
-
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
615
|
-
clipShadows?: boolean | undefined;
|
|
616
|
-
colorWrite?: boolean | undefined;
|
|
617
|
-
depthFunc?: import("three").DepthModes | undefined;
|
|
618
|
-
depthTest?: boolean | undefined;
|
|
619
|
-
depthWrite?: boolean | undefined;
|
|
620
|
-
stencilWrite?: boolean | undefined;
|
|
621
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
622
|
-
stencilRef?: number | undefined;
|
|
623
|
-
stencilWriteMask?: number | undefined;
|
|
624
|
-
stencilFuncMask?: number | undefined;
|
|
625
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
626
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
627
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
628
|
-
polygonOffset?: boolean | undefined;
|
|
629
|
-
polygonOffsetFactor?: number | undefined;
|
|
630
|
-
polygonOffsetUnits?: number | undefined;
|
|
631
|
-
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
632
|
-
premultipliedAlpha?: boolean | undefined;
|
|
633
|
-
forceSinglePass?: boolean | undefined;
|
|
634
|
-
dithering?: boolean | undefined;
|
|
635
|
-
side?: import("three").Side | undefined;
|
|
636
|
-
shadowSide?: import("three").Side | null | undefined;
|
|
637
|
-
toneMapped?: boolean | undefined;
|
|
638
|
-
transparent?: boolean | undefined;
|
|
639
|
-
vertexColors?: boolean | undefined;
|
|
640
695
|
version?: number | undefined;
|
|
641
|
-
alphaTest?: number | undefined;
|
|
642
696
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
643
697
|
customProgramCacheKey?: (() => string) | undefined;
|
|
644
698
|
needsUpdate?: boolean | undefined;
|
|
@@ -651,7 +705,7 @@ export declare class NgtsEdges {
|
|
|
651
705
|
quaternion: import("angular-three").NgtQuaternion;
|
|
652
706
|
layers: import("angular-three").NgtLayers;
|
|
653
707
|
dispose: (() => void) | null;
|
|
654
|
-
}, ev: import("angular-three").
|
|
708
|
+
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
655
709
|
__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;
|
|
656
710
|
position?: import("angular-three").NgtVector3 | undefined;
|
|
657
711
|
up?: import("angular-three").NgtVector3 | undefined;
|
|
@@ -676,7 +730,6 @@ export declare class NgtsEdges {
|
|
|
676
730
|
isObject3D?: true | undefined;
|
|
677
731
|
id?: number | undefined;
|
|
678
732
|
uuid?: string | undefined;
|
|
679
|
-
name?: string | undefined;
|
|
680
733
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
681
734
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
682
735
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -685,13 +738,11 @@ export declare class NgtsEdges {
|
|
|
685
738
|
matrixAutoUpdate?: boolean | undefined;
|
|
686
739
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
687
740
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
688
|
-
visible?: boolean | undefined;
|
|
689
741
|
castShadow?: boolean | undefined;
|
|
690
742
|
receiveShadow?: boolean | undefined;
|
|
691
743
|
frustumCulled?: boolean | undefined;
|
|
692
744
|
renderOrder?: number | undefined;
|
|
693
745
|
animations?: import("three").AnimationClip[] | undefined;
|
|
694
|
-
userData?: Record<string, any> | undefined;
|
|
695
746
|
customDepthMaterial?: import("three").Material | undefined;
|
|
696
747
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
697
748
|
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;
|
|
@@ -760,27 +811,14 @@ export declare class NgtsEdges {
|
|
|
760
811
|
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> & {
|
|
761
812
|
dispose: {};
|
|
762
813
|
}[T]) => void)) | undefined;
|
|
763
|
-
color?: ColorRepresentation | undefined;
|
|
764
|
-
dashed?: boolean | undefined;
|
|
765
|
-
dashScale?: number | undefined;
|
|
766
|
-
dashSize?: number | undefined;
|
|
767
|
-
dashOffset?: number | undefined;
|
|
768
|
-
gapSize?: number | undefined;
|
|
769
|
-
opacity?: number | undefined;
|
|
770
814
|
isLineMaterial?: true | undefined;
|
|
771
|
-
linewidth?: number | undefined;
|
|
772
|
-
resolution?: import("three").Vector2 | undefined;
|
|
773
|
-
alphaToCoverage?: boolean | undefined;
|
|
774
|
-
worldUnits?: boolean | undefined;
|
|
775
815
|
isShaderMaterial?: true | undefined;
|
|
776
|
-
defines?: any;
|
|
777
816
|
uniforms?: {
|
|
778
817
|
[uniform: string]: import("three").IUniform<any>;
|
|
779
818
|
} | undefined;
|
|
780
819
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
781
820
|
vertexShader?: string | undefined;
|
|
782
821
|
fragmentShader?: string | undefined;
|
|
783
|
-
wireframe?: boolean | undefined;
|
|
784
822
|
wireframeLinewidth?: number | undefined;
|
|
785
823
|
fog?: boolean | undefined;
|
|
786
824
|
lights?: boolean | undefined;
|
|
@@ -795,49 +833,11 @@ export declare class NgtsEdges {
|
|
|
795
833
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
796
834
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
797
835
|
isMaterial?: true | undefined;
|
|
798
|
-
alphaHash?: boolean | undefined;
|
|
799
|
-
blendAlpha?: number | undefined;
|
|
800
|
-
blendColor?: ColorRepresentation | undefined;
|
|
801
|
-
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
802
|
-
blendDstAlpha?: number | undefined;
|
|
803
|
-
blendEquation?: import("three").BlendingEquation | undefined;
|
|
804
|
-
blendEquationAlpha?: number | undefined;
|
|
805
|
-
blending?: import("three").Blending | undefined;
|
|
806
|
-
blendSrc?: import("three").BlendingSrcFactor | import("three").BlendingDstFactor | undefined;
|
|
807
|
-
blendSrcAlpha?: number | undefined;
|
|
808
|
-
clipIntersection?: boolean | undefined;
|
|
809
|
-
clippingPlanes?: import("three").Plane[] | undefined;
|
|
810
|
-
clipShadows?: boolean | undefined;
|
|
811
|
-
colorWrite?: boolean | undefined;
|
|
812
|
-
depthFunc?: import("three").DepthModes | undefined;
|
|
813
|
-
depthTest?: boolean | undefined;
|
|
814
|
-
depthWrite?: boolean | undefined;
|
|
815
|
-
stencilWrite?: boolean | undefined;
|
|
816
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
817
|
-
stencilRef?: number | undefined;
|
|
818
|
-
stencilWriteMask?: number | undefined;
|
|
819
|
-
stencilFuncMask?: number | undefined;
|
|
820
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
821
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
822
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
823
|
-
polygonOffset?: boolean | undefined;
|
|
824
|
-
polygonOffsetFactor?: number | undefined;
|
|
825
|
-
polygonOffsetUnits?: number | undefined;
|
|
826
|
-
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
827
|
-
premultipliedAlpha?: boolean | undefined;
|
|
828
|
-
forceSinglePass?: boolean | undefined;
|
|
829
|
-
dithering?: boolean | undefined;
|
|
830
|
-
side?: import("three").Side | undefined;
|
|
831
|
-
shadowSide?: 0 | 1 | 2 | undefined;
|
|
832
|
-
toneMapped?: boolean | undefined;
|
|
833
|
-
transparent?: boolean | undefined;
|
|
834
836
|
version?: number | undefined;
|
|
835
|
-
alphaTest?: number | undefined;
|
|
836
837
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
837
838
|
customProgramCacheKey?: (() => string) | undefined;
|
|
838
839
|
needsUpdate?: boolean | undefined;
|
|
839
840
|
onBuild?: ((object: import("three").Object3D, parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
840
|
-
format?: import("three").PixelFormat | undefined;
|
|
841
841
|
lineWidth?: number | undefined;
|
|
842
842
|
}>;
|
|
843
843
|
protected tmpPoints: number[];
|