angular-three-soba 2.2.1 → 2.3.2
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 +214 -214
- package/abstractions/lib/edges.d.ts +238 -238
- package/abstractions/lib/grid.d.ts +39 -39
- package/abstractions/lib/line.d.ts +2 -2
- package/abstractions/lib/prism-geometry.d.ts +4 -4
- package/abstractions/lib/rounded-box.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +45 -45
- package/abstractions/lib/text.d.ts +2 -2
- package/controls/lib/camera-controls.d.ts +1 -1
- package/controls/lib/orbit-controls.d.ts +1 -1
- package/esm2022/gizmos/lib/gizmo-helper/gizmo-viewcube.mjs +9 -9
- package/esm2022/misc/lib/sampler.mjs +2 -8
- package/fesm2022/angular-three-soba-gizmos.mjs +8 -8
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +1 -7
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/gizmos/lib/gizmo-helper/gizmo-viewcube.d.ts +5 -5
- package/gizmos/lib/gizmo-helper/gizmo-viewport.d.ts +1 -1
- package/gizmos/lib/pivot-controls/pivot-controls.d.ts +1 -1
- package/gizmos/lib/transform-controls.d.ts +2 -2
- package/materials/lib/mesh-refraction-material.d.ts +1 -1
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/computed-attribute.d.ts +2 -2
- package/misc/lib/decal.d.ts +1 -1
- package/misc/lib/html/html.d.ts +1 -1
- package/package.json +7 -7
- package/performances/lib/instances/instances.d.ts +1 -1
- package/performances/lib/points/points.d.ts +1 -1
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/center.d.ts +2 -2
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/mask.d.ts +1 -1
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +1 -1
- package/staging/lib/stage.d.ts +5 -5
|
@@ -15,83 +15,17 @@ 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;
|
|
72
18
|
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
73
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: {
|
|
74
|
-
name?: string | undefined;
|
|
75
|
-
visible?: boolean | undefined;
|
|
76
|
-
userData?: Record<string, any> | undefined;
|
|
77
20
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
78
21
|
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;
|
|
79
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").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
80
23
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
81
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
82
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
83
|
-
readonly isMesh?: true | undefined;
|
|
84
24
|
readonly type?: string | undefined;
|
|
85
|
-
morphTargetInfluences?: number[] | undefined;
|
|
86
|
-
morphTargetDictionary?: {
|
|
87
|
-
[key: string]: number;
|
|
88
|
-
} | undefined;
|
|
89
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
90
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
91
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
92
25
|
readonly isObject3D?: true | undefined;
|
|
93
26
|
readonly id?: number | undefined;
|
|
94
27
|
uuid?: string | undefined;
|
|
28
|
+
name?: string | undefined;
|
|
95
29
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
96
30
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
97
31
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -100,11 +34,13 @@ export declare class NgtsEdges {
|
|
|
100
34
|
matrixAutoUpdate?: boolean | undefined;
|
|
101
35
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
102
36
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
37
|
+
visible?: boolean | undefined;
|
|
103
38
|
castShadow?: boolean | undefined;
|
|
104
39
|
receiveShadow?: boolean | undefined;
|
|
105
40
|
frustumCulled?: boolean | undefined;
|
|
106
41
|
renderOrder?: number | undefined;
|
|
107
42
|
animations?: import("three").AnimationClip[] | undefined;
|
|
43
|
+
userData?: Record<string, any> | undefined;
|
|
108
44
|
customDepthMaterial?: import("three").Material | undefined;
|
|
109
45
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
110
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;
|
|
@@ -150,10 +86,20 @@ export declare class NgtsEdges {
|
|
|
150
86
|
updateMatrix?: (() => void) | undefined;
|
|
151
87
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
152
88
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
89
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
153
90
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
154
91
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
155
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;
|
|
156
93
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
94
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
95
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
96
|
+
readonly isMesh?: true | undefined;
|
|
97
|
+
morphTargetInfluences?: number[] | undefined;
|
|
98
|
+
morphTargetDictionary?: {
|
|
99
|
+
[key: string]: number;
|
|
100
|
+
} | undefined;
|
|
101
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
102
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
157
103
|
position: import("angular-three").NgtVector3;
|
|
158
104
|
up: import("angular-three").NgtVector3;
|
|
159
105
|
scale: import("angular-three").NgtVector3;
|
|
@@ -164,30 +110,15 @@ export declare class NgtsEdges {
|
|
|
164
110
|
dispose: (() => void) | null;
|
|
165
111
|
raycast: import("three").Object3D["raycast"] | null;
|
|
166
112
|
}, 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: {
|
|
167
|
-
name?: string | undefined;
|
|
168
|
-
visible?: boolean | undefined;
|
|
169
|
-
userData?: Record<string, any> | undefined;
|
|
170
113
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
171
114
|
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;
|
|
172
115
|
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);
|
|
173
116
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
174
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
175
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
176
|
-
readonly isLine2?: true | undefined;
|
|
177
|
-
readonly isLineSegments2?: true | undefined;
|
|
178
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
179
|
-
readonly isMesh?: true | undefined;
|
|
180
117
|
readonly type?: string | undefined;
|
|
181
|
-
morphTargetInfluences?: number[] | undefined;
|
|
182
|
-
morphTargetDictionary?: {
|
|
183
|
-
[key: string]: number;
|
|
184
|
-
} | undefined;
|
|
185
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
186
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
187
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
188
118
|
readonly isObject3D?: true | undefined;
|
|
189
119
|
readonly id?: number | undefined;
|
|
190
120
|
uuid?: string | undefined;
|
|
121
|
+
name?: string | undefined;
|
|
191
122
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
192
123
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
193
124
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -196,11 +127,13 @@ export declare class NgtsEdges {
|
|
|
196
127
|
matrixAutoUpdate?: boolean | undefined;
|
|
197
128
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
198
129
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
130
|
+
visible?: boolean | undefined;
|
|
199
131
|
castShadow?: boolean | undefined;
|
|
200
132
|
receiveShadow?: boolean | undefined;
|
|
201
133
|
frustumCulled?: boolean | undefined;
|
|
202
134
|
renderOrder?: number | undefined;
|
|
203
135
|
animations?: import("three").AnimationClip[] | undefined;
|
|
136
|
+
userData?: Record<string, any> | undefined;
|
|
204
137
|
customDepthMaterial?: import("three").Material | undefined;
|
|
205
138
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
206
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;
|
|
@@ -246,10 +179,23 @@ export declare class NgtsEdges {
|
|
|
246
179
|
updateMatrix?: (() => void) | undefined;
|
|
247
180
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
248
181
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
182
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
249
183
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
250
184
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
251
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;
|
|
252
186
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
187
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
188
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
189
|
+
readonly isLine2?: true | undefined;
|
|
190
|
+
readonly isLineSegments2?: true | undefined;
|
|
191
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
192
|
+
readonly isMesh?: true | undefined;
|
|
193
|
+
morphTargetInfluences?: number[] | undefined;
|
|
194
|
+
morphTargetDictionary?: {
|
|
195
|
+
[key: string]: number;
|
|
196
|
+
} | undefined;
|
|
197
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
198
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
253
199
|
position: import("angular-three").NgtVector3;
|
|
254
200
|
up: import("angular-three").NgtVector3;
|
|
255
201
|
scale: import("angular-three").NgtVector3;
|
|
@@ -260,71 +206,18 @@ export declare class NgtsEdges {
|
|
|
260
206
|
dispose: (() => void) | null;
|
|
261
207
|
raycast: import("three").Object3D["raycast"] | null;
|
|
262
208
|
}, 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: {
|
|
263
|
-
vertexColors?: boolean | undefined;
|
|
264
|
-
color?: ColorRepresentation | undefined;
|
|
265
|
-
alphaToCoverage?: boolean | undefined;
|
|
266
|
-
dashed?: boolean | undefined;
|
|
267
|
-
dashScale?: number | undefined;
|
|
268
|
-
dashSize?: number | undefined;
|
|
269
|
-
dashOffset?: number | undefined;
|
|
270
|
-
gapSize?: number | undefined;
|
|
271
|
-
linewidth?: number | undefined;
|
|
272
|
-
resolution?: import("three").Vector2 | undefined;
|
|
273
|
-
wireframe?: boolean | undefined;
|
|
274
|
-
worldUnits?: boolean | undefined;
|
|
275
|
-
alphaHash?: boolean | undefined;
|
|
276
|
-
alphaTest?: number | undefined;
|
|
277
|
-
blendAlpha?: number | undefined;
|
|
278
|
-
blendColor?: ColorRepresentation | undefined;
|
|
279
|
-
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
280
|
-
blendDstAlpha?: number | null | undefined;
|
|
281
|
-
blendEquation?: import("three").BlendingEquation | undefined;
|
|
282
|
-
blendEquationAlpha?: number | null | undefined;
|
|
283
|
-
blending?: import("three").Blending | undefined;
|
|
284
|
-
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
285
|
-
blendSrcAlpha?: number | null | undefined;
|
|
286
|
-
clipIntersection?: boolean | undefined;
|
|
287
|
-
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
288
|
-
clipShadows?: boolean | undefined;
|
|
289
|
-
colorWrite?: boolean | undefined;
|
|
290
|
-
defines?: {
|
|
291
|
-
[key: string]: any;
|
|
292
|
-
} | undefined;
|
|
293
|
-
depthFunc?: import("three").DepthModes | undefined;
|
|
294
|
-
depthTest?: boolean | undefined;
|
|
295
|
-
depthWrite?: boolean | undefined;
|
|
296
|
-
name?: string | undefined;
|
|
297
|
-
opacity?: number | undefined;
|
|
298
|
-
polygonOffset?: boolean | undefined;
|
|
299
|
-
polygonOffsetFactor?: number | undefined;
|
|
300
|
-
polygonOffsetUnits?: number | undefined;
|
|
301
|
-
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
302
|
-
premultipliedAlpha?: boolean | undefined;
|
|
303
|
-
forceSinglePass?: boolean | undefined;
|
|
304
|
-
dithering?: boolean | undefined;
|
|
305
|
-
side?: import("three").Side | undefined;
|
|
306
|
-
shadowSide?: import("three").Side | null | undefined;
|
|
307
|
-
toneMapped?: boolean | undefined;
|
|
308
|
-
transparent?: boolean | undefined;
|
|
309
|
-
visible?: boolean | undefined;
|
|
310
|
-
stencilWrite?: boolean | undefined;
|
|
311
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
312
|
-
stencilRef?: number | undefined;
|
|
313
|
-
stencilWriteMask?: number | undefined;
|
|
314
|
-
stencilFuncMask?: number | undefined;
|
|
315
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
316
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
317
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
318
|
-
userData?: Record<string, any> | undefined;
|
|
319
209
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
320
210
|
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;
|
|
321
211
|
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);
|
|
322
212
|
__ngt_args__: [LineMaterialParameters];
|
|
323
213
|
type?: string | undefined;
|
|
324
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
325
214
|
id?: number | undefined;
|
|
326
215
|
uuid?: string | undefined;
|
|
216
|
+
name?: string | undefined;
|
|
217
|
+
visible?: boolean | undefined;
|
|
218
|
+
userData?: Record<string, any> | undefined;
|
|
327
219
|
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;
|
|
220
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
328
221
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
329
222
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
330
223
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -333,14 +226,29 @@ export declare class NgtsEdges {
|
|
|
333
226
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
334
227
|
dispose: {};
|
|
335
228
|
}[T]) => void) | undefined;
|
|
229
|
+
color?: ColorRepresentation | undefined;
|
|
230
|
+
dashed?: boolean | undefined;
|
|
231
|
+
dashScale?: number | undefined;
|
|
232
|
+
dashSize?: number | undefined;
|
|
233
|
+
dashOffset?: number | undefined;
|
|
234
|
+
gapSize?: number | undefined;
|
|
235
|
+
opacity?: number | undefined;
|
|
336
236
|
readonly isLineMaterial?: true | undefined;
|
|
237
|
+
linewidth?: number | undefined;
|
|
238
|
+
resolution?: import("three").Vector2 | undefined;
|
|
239
|
+
alphaToCoverage?: boolean | undefined;
|
|
240
|
+
worldUnits?: boolean | undefined;
|
|
337
241
|
readonly isShaderMaterial?: true | undefined;
|
|
242
|
+
defines?: {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
} | undefined;
|
|
338
245
|
uniforms?: {
|
|
339
246
|
[uniform: string]: import("three").IUniform<any>;
|
|
340
247
|
} | undefined;
|
|
341
248
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
342
249
|
vertexShader?: string | undefined;
|
|
343
250
|
fragmentShader?: string | undefined;
|
|
251
|
+
wireframe?: boolean | undefined;
|
|
344
252
|
wireframeLinewidth?: number | undefined;
|
|
345
253
|
fog?: boolean | undefined;
|
|
346
254
|
lights?: boolean | undefined;
|
|
@@ -355,7 +263,45 @@ export declare class NgtsEdges {
|
|
|
355
263
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
356
264
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
357
265
|
readonly isMaterial?: true | undefined;
|
|
266
|
+
alphaHash?: boolean | undefined;
|
|
267
|
+
blendAlpha?: number | undefined;
|
|
268
|
+
blendColor?: ColorRepresentation | undefined;
|
|
269
|
+
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
270
|
+
blendDstAlpha?: number | null | undefined;
|
|
271
|
+
blendEquation?: import("three").BlendingEquation | undefined;
|
|
272
|
+
blendEquationAlpha?: number | null | undefined;
|
|
273
|
+
blending?: import("three").Blending | undefined;
|
|
274
|
+
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
275
|
+
blendSrcAlpha?: number | null | undefined;
|
|
276
|
+
clipIntersection?: boolean | undefined;
|
|
277
|
+
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
278
|
+
clipShadows?: boolean | undefined;
|
|
279
|
+
colorWrite?: boolean | undefined;
|
|
280
|
+
depthFunc?: import("three").DepthModes | undefined;
|
|
281
|
+
depthTest?: boolean | undefined;
|
|
282
|
+
depthWrite?: boolean | undefined;
|
|
283
|
+
stencilWrite?: boolean | undefined;
|
|
284
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
285
|
+
stencilRef?: number | undefined;
|
|
286
|
+
stencilWriteMask?: number | undefined;
|
|
287
|
+
stencilFuncMask?: number | undefined;
|
|
288
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
289
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
290
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
291
|
+
polygonOffset?: boolean | undefined;
|
|
292
|
+
polygonOffsetFactor?: number | undefined;
|
|
293
|
+
polygonOffsetUnits?: number | undefined;
|
|
294
|
+
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
295
|
+
premultipliedAlpha?: boolean | undefined;
|
|
296
|
+
forceSinglePass?: boolean | undefined;
|
|
297
|
+
dithering?: boolean | undefined;
|
|
298
|
+
side?: import("three").Side | undefined;
|
|
299
|
+
shadowSide?: import("three").Side | null | undefined;
|
|
300
|
+
toneMapped?: boolean | undefined;
|
|
301
|
+
transparent?: boolean | undefined;
|
|
302
|
+
vertexColors?: boolean | undefined;
|
|
358
303
|
version?: number | undefined;
|
|
304
|
+
alphaTest?: number | undefined;
|
|
359
305
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
360
306
|
customProgramCacheKey?: (() => string) | undefined;
|
|
361
307
|
needsUpdate?: boolean | undefined;
|
|
@@ -371,27 +317,15 @@ export declare class NgtsEdges {
|
|
|
371
317
|
raycast: import("three").Object3D["raycast"] | null;
|
|
372
318
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
373
319
|
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: {
|
|
374
|
-
name?: string | undefined;
|
|
375
|
-
visible?: boolean | undefined;
|
|
376
|
-
userData?: Record<string, any> | undefined;
|
|
377
320
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
378
321
|
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);
|
|
379
322
|
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;
|
|
380
323
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
381
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
382
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
383
|
-
readonly isMesh?: true | undefined;
|
|
384
324
|
readonly type?: string | undefined;
|
|
385
|
-
morphTargetInfluences?: number[] | undefined;
|
|
386
|
-
morphTargetDictionary?: {
|
|
387
|
-
[key: string]: number;
|
|
388
|
-
} | undefined;
|
|
389
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
390
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
391
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
392
325
|
readonly isObject3D?: true | undefined;
|
|
393
326
|
readonly id?: number | undefined;
|
|
394
327
|
uuid?: string | undefined;
|
|
328
|
+
name?: string | undefined;
|
|
395
329
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
396
330
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
397
331
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -400,11 +334,13 @@ export declare class NgtsEdges {
|
|
|
400
334
|
matrixAutoUpdate?: boolean | undefined;
|
|
401
335
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
402
336
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
337
|
+
visible?: boolean | undefined;
|
|
403
338
|
castShadow?: boolean | undefined;
|
|
404
339
|
receiveShadow?: boolean | undefined;
|
|
405
340
|
frustumCulled?: boolean | undefined;
|
|
406
341
|
renderOrder?: number | undefined;
|
|
407
342
|
animations?: import("three").AnimationClip[] | undefined;
|
|
343
|
+
userData?: Record<string, any> | undefined;
|
|
408
344
|
customDepthMaterial?: import("three").Material | undefined;
|
|
409
345
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
410
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;
|
|
@@ -450,10 +386,20 @@ export declare class NgtsEdges {
|
|
|
450
386
|
updateMatrix?: (() => void) | undefined;
|
|
451
387
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
452
388
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
389
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
453
390
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
454
391
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
455
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;
|
|
456
393
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
394
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
395
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
396
|
+
readonly isMesh?: true | undefined;
|
|
397
|
+
morphTargetInfluences?: number[] | undefined;
|
|
398
|
+
morphTargetDictionary?: {
|
|
399
|
+
[key: string]: number;
|
|
400
|
+
} | undefined;
|
|
401
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
402
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
457
403
|
position: import("angular-three").NgtVector3;
|
|
458
404
|
up: import("angular-three").NgtVector3;
|
|
459
405
|
scale: import("angular-three").NgtVector3;
|
|
@@ -464,30 +410,15 @@ export declare class NgtsEdges {
|
|
|
464
410
|
dispose: (() => void) | null;
|
|
465
411
|
raycast: import("three").Object3D["raycast"] | null;
|
|
466
412
|
}, 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: {
|
|
467
|
-
name?: string | undefined;
|
|
468
|
-
visible?: boolean | undefined;
|
|
469
|
-
userData?: Record<string, any> | undefined;
|
|
470
413
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
471
414
|
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);
|
|
472
415
|
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;
|
|
473
416
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
474
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
475
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
476
|
-
readonly isLine2?: true | undefined;
|
|
477
|
-
readonly isLineSegments2?: true | undefined;
|
|
478
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
479
|
-
readonly isMesh?: true | undefined;
|
|
480
417
|
readonly type?: string | undefined;
|
|
481
|
-
morphTargetInfluences?: number[] | undefined;
|
|
482
|
-
morphTargetDictionary?: {
|
|
483
|
-
[key: string]: number;
|
|
484
|
-
} | undefined;
|
|
485
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
486
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
487
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
488
418
|
readonly isObject3D?: true | undefined;
|
|
489
419
|
readonly id?: number | undefined;
|
|
490
420
|
uuid?: string | undefined;
|
|
421
|
+
name?: string | undefined;
|
|
491
422
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
492
423
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
493
424
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -496,11 +427,13 @@ export declare class NgtsEdges {
|
|
|
496
427
|
matrixAutoUpdate?: boolean | undefined;
|
|
497
428
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
498
429
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
430
|
+
visible?: boolean | undefined;
|
|
499
431
|
castShadow?: boolean | undefined;
|
|
500
432
|
receiveShadow?: boolean | undefined;
|
|
501
433
|
frustumCulled?: boolean | undefined;
|
|
502
434
|
renderOrder?: number | undefined;
|
|
503
435
|
animations?: import("three").AnimationClip[] | undefined;
|
|
436
|
+
userData?: Record<string, any> | undefined;
|
|
504
437
|
customDepthMaterial?: import("three").Material | undefined;
|
|
505
438
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
506
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;
|
|
@@ -546,10 +479,23 @@ export declare class NgtsEdges {
|
|
|
546
479
|
updateMatrix?: (() => void) | undefined;
|
|
547
480
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
548
481
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
482
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
549
483
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
550
484
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
551
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;
|
|
552
486
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
487
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
488
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
489
|
+
readonly isLine2?: true | undefined;
|
|
490
|
+
readonly isLineSegments2?: true | undefined;
|
|
491
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
492
|
+
readonly isMesh?: true | undefined;
|
|
493
|
+
morphTargetInfluences?: number[] | undefined;
|
|
494
|
+
morphTargetDictionary?: {
|
|
495
|
+
[key: string]: number;
|
|
496
|
+
} | undefined;
|
|
497
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
498
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
553
499
|
position: import("angular-three").NgtVector3;
|
|
554
500
|
up: import("angular-three").NgtVector3;
|
|
555
501
|
scale: import("angular-three").NgtVector3;
|
|
@@ -560,71 +506,18 @@ export declare class NgtsEdges {
|
|
|
560
506
|
dispose: (() => void) | null;
|
|
561
507
|
raycast: import("three").Object3D["raycast"] | null;
|
|
562
508
|
}, 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: {
|
|
563
|
-
vertexColors?: boolean | undefined;
|
|
564
|
-
color?: ColorRepresentation | undefined;
|
|
565
|
-
alphaToCoverage?: boolean | undefined;
|
|
566
|
-
dashed?: boolean | undefined;
|
|
567
|
-
dashScale?: number | undefined;
|
|
568
|
-
dashSize?: number | undefined;
|
|
569
|
-
dashOffset?: number | undefined;
|
|
570
|
-
gapSize?: number | undefined;
|
|
571
|
-
linewidth?: number | undefined;
|
|
572
|
-
resolution?: import("three").Vector2 | undefined;
|
|
573
|
-
wireframe?: boolean | undefined;
|
|
574
|
-
worldUnits?: boolean | undefined;
|
|
575
|
-
alphaHash?: boolean | undefined;
|
|
576
|
-
alphaTest?: number | undefined;
|
|
577
|
-
blendAlpha?: number | undefined;
|
|
578
|
-
blendColor?: ColorRepresentation | undefined;
|
|
579
|
-
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
580
|
-
blendDstAlpha?: number | null | undefined;
|
|
581
|
-
blendEquation?: import("three").BlendingEquation | undefined;
|
|
582
|
-
blendEquationAlpha?: number | null | undefined;
|
|
583
|
-
blending?: import("three").Blending | undefined;
|
|
584
|
-
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
585
|
-
blendSrcAlpha?: number | null | undefined;
|
|
586
|
-
clipIntersection?: boolean | undefined;
|
|
587
|
-
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
588
|
-
clipShadows?: boolean | undefined;
|
|
589
|
-
colorWrite?: boolean | undefined;
|
|
590
|
-
defines?: {
|
|
591
|
-
[key: string]: any;
|
|
592
|
-
} | undefined;
|
|
593
|
-
depthFunc?: import("three").DepthModes | undefined;
|
|
594
|
-
depthTest?: boolean | undefined;
|
|
595
|
-
depthWrite?: boolean | undefined;
|
|
596
|
-
name?: string | undefined;
|
|
597
|
-
opacity?: number | undefined;
|
|
598
|
-
polygonOffset?: boolean | undefined;
|
|
599
|
-
polygonOffsetFactor?: number | undefined;
|
|
600
|
-
polygonOffsetUnits?: number | undefined;
|
|
601
|
-
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
602
|
-
premultipliedAlpha?: boolean | undefined;
|
|
603
|
-
forceSinglePass?: boolean | undefined;
|
|
604
|
-
dithering?: boolean | undefined;
|
|
605
|
-
side?: import("three").Side | undefined;
|
|
606
|
-
shadowSide?: import("three").Side | null | undefined;
|
|
607
|
-
toneMapped?: boolean | undefined;
|
|
608
|
-
transparent?: boolean | undefined;
|
|
609
|
-
visible?: boolean | undefined;
|
|
610
|
-
stencilWrite?: boolean | undefined;
|
|
611
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
612
|
-
stencilRef?: number | undefined;
|
|
613
|
-
stencilWriteMask?: number | undefined;
|
|
614
|
-
stencilFuncMask?: number | undefined;
|
|
615
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
616
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
617
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
618
|
-
userData?: Record<string, any> | undefined;
|
|
619
509
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
620
510
|
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);
|
|
621
511
|
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;
|
|
622
512
|
__ngt_args__: [LineMaterialParameters];
|
|
623
513
|
type?: string | undefined;
|
|
624
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
625
514
|
id?: number | undefined;
|
|
626
515
|
uuid?: string | undefined;
|
|
516
|
+
name?: string | undefined;
|
|
517
|
+
visible?: boolean | undefined;
|
|
518
|
+
userData?: Record<string, any> | undefined;
|
|
627
519
|
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;
|
|
520
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
628
521
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
629
522
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
630
523
|
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -633,14 +526,29 @@ export declare class NgtsEdges {
|
|
|
633
526
|
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
634
527
|
dispose: {};
|
|
635
528
|
}[T]) => void) | undefined;
|
|
529
|
+
color?: ColorRepresentation | undefined;
|
|
530
|
+
dashed?: boolean | undefined;
|
|
531
|
+
dashScale?: number | undefined;
|
|
532
|
+
dashSize?: number | undefined;
|
|
533
|
+
dashOffset?: number | undefined;
|
|
534
|
+
gapSize?: number | undefined;
|
|
535
|
+
opacity?: number | undefined;
|
|
636
536
|
readonly isLineMaterial?: true | undefined;
|
|
537
|
+
linewidth?: number | undefined;
|
|
538
|
+
resolution?: import("three").Vector2 | undefined;
|
|
539
|
+
alphaToCoverage?: boolean | undefined;
|
|
540
|
+
worldUnits?: boolean | undefined;
|
|
637
541
|
readonly isShaderMaterial?: true | undefined;
|
|
542
|
+
defines?: {
|
|
543
|
+
[key: string]: any;
|
|
544
|
+
} | undefined;
|
|
638
545
|
uniforms?: {
|
|
639
546
|
[uniform: string]: import("three").IUniform<any>;
|
|
640
547
|
} | undefined;
|
|
641
548
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
642
549
|
vertexShader?: string | undefined;
|
|
643
550
|
fragmentShader?: string | undefined;
|
|
551
|
+
wireframe?: boolean | undefined;
|
|
644
552
|
wireframeLinewidth?: number | undefined;
|
|
645
553
|
fog?: boolean | undefined;
|
|
646
554
|
lights?: boolean | undefined;
|
|
@@ -655,7 +563,45 @@ export declare class NgtsEdges {
|
|
|
655
563
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
656
564
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
657
565
|
readonly isMaterial?: true | undefined;
|
|
566
|
+
alphaHash?: boolean | undefined;
|
|
567
|
+
blendAlpha?: number | undefined;
|
|
568
|
+
blendColor?: ColorRepresentation | undefined;
|
|
569
|
+
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
570
|
+
blendDstAlpha?: number | null | undefined;
|
|
571
|
+
blendEquation?: import("three").BlendingEquation | undefined;
|
|
572
|
+
blendEquationAlpha?: number | null | undefined;
|
|
573
|
+
blending?: import("three").Blending | undefined;
|
|
574
|
+
blendSrc?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | 210 | undefined;
|
|
575
|
+
blendSrcAlpha?: number | null | undefined;
|
|
576
|
+
clipIntersection?: boolean | undefined;
|
|
577
|
+
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
578
|
+
clipShadows?: boolean | undefined;
|
|
579
|
+
colorWrite?: boolean | undefined;
|
|
580
|
+
depthFunc?: import("three").DepthModes | undefined;
|
|
581
|
+
depthTest?: boolean | undefined;
|
|
582
|
+
depthWrite?: boolean | undefined;
|
|
583
|
+
stencilWrite?: boolean | undefined;
|
|
584
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
585
|
+
stencilRef?: number | undefined;
|
|
586
|
+
stencilWriteMask?: number | undefined;
|
|
587
|
+
stencilFuncMask?: number | undefined;
|
|
588
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
589
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
590
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
591
|
+
polygonOffset?: boolean | undefined;
|
|
592
|
+
polygonOffsetFactor?: number | undefined;
|
|
593
|
+
polygonOffsetUnits?: number | undefined;
|
|
594
|
+
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
595
|
+
premultipliedAlpha?: boolean | undefined;
|
|
596
|
+
forceSinglePass?: boolean | undefined;
|
|
597
|
+
dithering?: boolean | undefined;
|
|
598
|
+
side?: import("three").Side | undefined;
|
|
599
|
+
shadowSide?: import("three").Side | null | undefined;
|
|
600
|
+
toneMapped?: boolean | undefined;
|
|
601
|
+
transparent?: boolean | undefined;
|
|
602
|
+
vertexColors?: boolean | undefined;
|
|
658
603
|
version?: number | undefined;
|
|
604
|
+
alphaTest?: number | undefined;
|
|
659
605
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
660
606
|
customProgramCacheKey?: (() => string) | undefined;
|
|
661
607
|
needsUpdate?: boolean | undefined;
|
|
@@ -679,22 +625,11 @@ export declare class NgtsEdges {
|
|
|
679
625
|
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
680
626
|
layers?: import("angular-three").NgtLayers | undefined;
|
|
681
627
|
dispose?: (() => void) | null | undefined;
|
|
682
|
-
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
683
|
-
isLine2?: true | undefined;
|
|
684
|
-
isLineSegments2?: true | undefined;
|
|
685
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
686
|
-
isMesh?: true | undefined;
|
|
687
628
|
type?: string | undefined;
|
|
688
|
-
morphTargetInfluences?: number[] | undefined;
|
|
689
|
-
morphTargetDictionary?: {
|
|
690
|
-
[key: string]: number;
|
|
691
|
-
} | undefined;
|
|
692
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
693
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
694
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
695
629
|
isObject3D?: true | undefined;
|
|
696
630
|
id?: number | undefined;
|
|
697
631
|
uuid?: string | undefined;
|
|
632
|
+
name?: string | undefined;
|
|
698
633
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
699
634
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
700
635
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -703,11 +638,13 @@ export declare class NgtsEdges {
|
|
|
703
638
|
matrixAutoUpdate?: boolean | undefined;
|
|
704
639
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
705
640
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
641
|
+
visible?: boolean | undefined;
|
|
706
642
|
castShadow?: boolean | undefined;
|
|
707
643
|
receiveShadow?: boolean | undefined;
|
|
708
644
|
frustumCulled?: boolean | undefined;
|
|
709
645
|
renderOrder?: number | undefined;
|
|
710
646
|
animations?: import("three").AnimationClip[] | undefined;
|
|
647
|
+
userData?: Record<string, any> | undefined;
|
|
711
648
|
customDepthMaterial?: import("three").Material | undefined;
|
|
712
649
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
713
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;
|
|
@@ -753,6 +690,7 @@ export declare class NgtsEdges {
|
|
|
753
690
|
updateMatrix?: (() => void) | undefined;
|
|
754
691
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
755
692
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
693
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
756
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;
|
|
757
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;
|
|
758
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<{
|
|
@@ -761,14 +699,38 @@ export declare class NgtsEdges {
|
|
|
761
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> & {
|
|
762
700
|
dispose: {};
|
|
763
701
|
}[T]) => void)) | undefined;
|
|
702
|
+
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
703
|
+
isLine2?: true | undefined;
|
|
704
|
+
isLineSegments2?: true | undefined;
|
|
705
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
706
|
+
isMesh?: true | undefined;
|
|
707
|
+
morphTargetInfluences?: number[] | undefined;
|
|
708
|
+
morphTargetDictionary?: {
|
|
709
|
+
[key: string]: number;
|
|
710
|
+
} | undefined;
|
|
711
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
712
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
713
|
+
color?: ColorRepresentation | undefined;
|
|
714
|
+
dashed?: boolean | undefined;
|
|
715
|
+
dashScale?: number | undefined;
|
|
716
|
+
dashSize?: number | undefined;
|
|
717
|
+
dashOffset?: number | undefined;
|
|
718
|
+
gapSize?: number | undefined;
|
|
719
|
+
opacity?: number | undefined;
|
|
764
720
|
isLineMaterial?: true | undefined;
|
|
721
|
+
linewidth?: number | undefined;
|
|
722
|
+
resolution?: import("three").Vector2 | undefined;
|
|
723
|
+
alphaToCoverage?: boolean | undefined;
|
|
724
|
+
worldUnits?: boolean | undefined;
|
|
765
725
|
isShaderMaterial?: true | undefined;
|
|
726
|
+
defines?: any;
|
|
766
727
|
uniforms?: {
|
|
767
728
|
[uniform: string]: import("three").IUniform<any>;
|
|
768
729
|
} | undefined;
|
|
769
730
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
770
731
|
vertexShader?: string | undefined;
|
|
771
732
|
fragmentShader?: string | undefined;
|
|
733
|
+
wireframe?: boolean | undefined;
|
|
772
734
|
wireframeLinewidth?: number | undefined;
|
|
773
735
|
fog?: boolean | undefined;
|
|
774
736
|
lights?: boolean | undefined;
|
|
@@ -783,11 +745,49 @@ export declare class NgtsEdges {
|
|
|
783
745
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
784
746
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
785
747
|
isMaterial?: true | undefined;
|
|
748
|
+
alphaHash?: boolean | undefined;
|
|
749
|
+
blendAlpha?: number | undefined;
|
|
750
|
+
blendColor?: ColorRepresentation | undefined;
|
|
751
|
+
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
752
|
+
blendDstAlpha?: number | undefined;
|
|
753
|
+
blendEquation?: import("three").BlendingEquation | undefined;
|
|
754
|
+
blendEquationAlpha?: number | undefined;
|
|
755
|
+
blending?: import("three").Blending | undefined;
|
|
756
|
+
blendSrc?: import("three").BlendingSrcFactor | import("three").BlendingDstFactor | undefined;
|
|
757
|
+
blendSrcAlpha?: number | undefined;
|
|
758
|
+
clipIntersection?: boolean | undefined;
|
|
759
|
+
clippingPlanes?: import("three").Plane[] | undefined;
|
|
760
|
+
clipShadows?: boolean | undefined;
|
|
761
|
+
colorWrite?: boolean | undefined;
|
|
762
|
+
depthFunc?: import("three").DepthModes | undefined;
|
|
763
|
+
depthTest?: boolean | undefined;
|
|
764
|
+
depthWrite?: boolean | undefined;
|
|
765
|
+
stencilWrite?: boolean | undefined;
|
|
766
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
767
|
+
stencilRef?: number | undefined;
|
|
768
|
+
stencilWriteMask?: number | undefined;
|
|
769
|
+
stencilFuncMask?: number | undefined;
|
|
770
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
771
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
772
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
773
|
+
polygonOffset?: boolean | undefined;
|
|
774
|
+
polygonOffsetFactor?: number | undefined;
|
|
775
|
+
polygonOffsetUnits?: number | undefined;
|
|
776
|
+
precision?: "highp" | "mediump" | "lowp" | null | undefined;
|
|
777
|
+
premultipliedAlpha?: boolean | undefined;
|
|
778
|
+
forceSinglePass?: boolean | undefined;
|
|
779
|
+
dithering?: boolean | undefined;
|
|
780
|
+
side?: import("three").Side | undefined;
|
|
781
|
+
shadowSide?: 0 | 1 | 2 | undefined;
|
|
782
|
+
toneMapped?: boolean | undefined;
|
|
783
|
+
transparent?: boolean | undefined;
|
|
786
784
|
version?: number | undefined;
|
|
785
|
+
alphaTest?: number | undefined;
|
|
787
786
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
788
787
|
customProgramCacheKey?: (() => string) | undefined;
|
|
789
788
|
needsUpdate?: boolean | undefined;
|
|
790
789
|
onBuild?: ((object: import("three").Object3D, parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
790
|
+
format?: import("three").PixelFormat | undefined;
|
|
791
791
|
lineWidth?: number | undefined;
|
|
792
792
|
}>;
|
|
793
793
|
protected tmpPoints: number[];
|