angular-three-soba 3.2.0 → 3.2.1
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 +218 -218
- package/abstractions/lib/edges.d.ts +245 -245
- package/abstractions/lib/grid.d.ts +42 -42
- package/abstractions/lib/line.d.ts +3 -3
- package/abstractions/lib/prism-geometry.d.ts +2 -2
- package/abstractions/lib/quadratic-bezier-line.d.ts +1 -1
- package/abstractions/lib/rounded-box.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +44 -44
- package/controls/lib/camera-controls.d.ts +1 -1
- package/controls/lib/orbit-controls.d.ts +1 -1
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-gizmos.mjs +3 -14
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -1
- package/materials/lib/custom-shader-material.d.ts +2 -2
- package/materials/lib/mesh-portal-material.d.ts +25 -25
- package/materials/lib/mesh-refraction-material.d.ts +2 -2
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/computed-attribute.d.ts +4 -4
- package/misc/lib/decal.d.ts +1 -1
- package/misc/lib/html/html.d.ts +1 -1
- package/misc/lib/sampler.d.ts +1 -1
- package/package.json +8 -8
- 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/spot-light.d.ts +1 -1
- package/staging/lib/stage.d.ts +5 -5
|
@@ -15,6 +15,60 @@ 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 | 1 | 2 | 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
|
position?: import("angular-three").NgtVector3 | undefined;
|
|
19
73
|
up?: import("angular-three").NgtVector3 | undefined;
|
|
20
74
|
scale?: import("angular-three").NgtVector3 | undefined;
|
|
@@ -24,15 +78,27 @@ export declare class NgtsEdges {
|
|
|
24
78
|
layers?: import("angular-three").NgtLayers | undefined;
|
|
25
79
|
dispose?: (() => void) | null | undefined;
|
|
26
80
|
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: {
|
|
81
|
+
name?: string | undefined;
|
|
82
|
+
visible?: boolean | undefined;
|
|
83
|
+
userData?: Record<string, any> | undefined;
|
|
27
84
|
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;
|
|
28
85
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
29
86
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
30
87
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
88
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
89
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
90
|
+
readonly isMesh?: true | undefined;
|
|
91
|
+
readonly type?: string | undefined;
|
|
92
|
+
morphTargetInfluences?: number[] | undefined;
|
|
93
|
+
morphTargetDictionary?: {
|
|
94
|
+
[key: string]: number;
|
|
95
|
+
} | undefined;
|
|
96
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
97
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
98
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
31
99
|
readonly isObject3D?: true | undefined;
|
|
32
100
|
readonly id?: number | undefined;
|
|
33
101
|
uuid?: string | undefined;
|
|
34
|
-
name?: string | undefined;
|
|
35
|
-
readonly type?: string | undefined;
|
|
36
102
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
37
103
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
38
104
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -41,13 +107,11 @@ export declare class NgtsEdges {
|
|
|
41
107
|
matrixAutoUpdate?: boolean | undefined;
|
|
42
108
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
43
109
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
44
|
-
visible?: boolean | undefined;
|
|
45
110
|
castShadow?: boolean | undefined;
|
|
46
111
|
receiveShadow?: boolean | undefined;
|
|
47
112
|
frustumCulled?: boolean | undefined;
|
|
48
113
|
renderOrder?: number | undefined;
|
|
49
114
|
animations?: import("three").AnimationClip[] | undefined;
|
|
50
|
-
userData?: Record<string, any> | undefined;
|
|
51
115
|
customDepthMaterial?: import("three").Material | undefined;
|
|
52
116
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
53
117
|
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;
|
|
@@ -93,20 +157,10 @@ export declare class NgtsEdges {
|
|
|
93
157
|
updateMatrix?: (() => void) | undefined;
|
|
94
158
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
95
159
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
96
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
97
160
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
98
161
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
99
162
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
100
163
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
101
|
-
readonly isMesh?: true | undefined;
|
|
102
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
103
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
104
|
-
morphTargetInfluences?: number[] | undefined;
|
|
105
|
-
morphTargetDictionary?: {
|
|
106
|
-
[key: string]: number;
|
|
107
|
-
} | undefined;
|
|
108
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
109
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
110
164
|
position: import("angular-three").NgtVector3;
|
|
111
165
|
up: import("angular-three").NgtVector3;
|
|
112
166
|
scale: import("angular-three").NgtVector3;
|
|
@@ -117,15 +171,30 @@ export declare class NgtsEdges {
|
|
|
117
171
|
dispose: (() => void) | null;
|
|
118
172
|
raycast: import("three").Object3D["raycast"] | null;
|
|
119
173
|
}, 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: {
|
|
174
|
+
name?: string | undefined;
|
|
175
|
+
visible?: boolean | undefined;
|
|
176
|
+
userData?: Record<string, any> | undefined;
|
|
120
177
|
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;
|
|
121
178
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
122
179
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
123
180
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
181
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
182
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
183
|
+
readonly isLine2?: true | undefined;
|
|
184
|
+
readonly isLineSegments2?: true | undefined;
|
|
185
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
186
|
+
readonly isMesh?: true | undefined;
|
|
187
|
+
readonly type?: string | undefined;
|
|
188
|
+
morphTargetInfluences?: number[] | undefined;
|
|
189
|
+
morphTargetDictionary?: {
|
|
190
|
+
[key: string]: number;
|
|
191
|
+
} | undefined;
|
|
192
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
193
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
194
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
124
195
|
readonly isObject3D?: true | undefined;
|
|
125
196
|
readonly id?: number | undefined;
|
|
126
197
|
uuid?: string | undefined;
|
|
127
|
-
name?: string | undefined;
|
|
128
|
-
readonly type?: string | undefined;
|
|
129
198
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
130
199
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
131
200
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -134,13 +203,11 @@ export declare class NgtsEdges {
|
|
|
134
203
|
matrixAutoUpdate?: boolean | undefined;
|
|
135
204
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
136
205
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
137
|
-
visible?: boolean | undefined;
|
|
138
206
|
castShadow?: boolean | undefined;
|
|
139
207
|
receiveShadow?: boolean | undefined;
|
|
140
208
|
frustumCulled?: boolean | undefined;
|
|
141
209
|
renderOrder?: number | undefined;
|
|
142
210
|
animations?: import("three").AnimationClip[] | undefined;
|
|
143
|
-
userData?: Record<string, any> | undefined;
|
|
144
211
|
customDepthMaterial?: import("three").Material | undefined;
|
|
145
212
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
146
213
|
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;
|
|
@@ -186,23 +253,10 @@ export declare class NgtsEdges {
|
|
|
186
253
|
updateMatrix?: (() => void) | undefined;
|
|
187
254
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
188
255
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
189
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
190
256
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
191
257
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
192
258
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
193
259
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
194
|
-
readonly isMesh?: true | undefined;
|
|
195
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
196
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
197
|
-
morphTargetInfluences?: number[] | undefined;
|
|
198
|
-
morphTargetDictionary?: {
|
|
199
|
-
[key: string]: number;
|
|
200
|
-
} | undefined;
|
|
201
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
202
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
203
|
-
readonly isLine2?: true | undefined;
|
|
204
|
-
readonly isLineSegments2?: true | undefined;
|
|
205
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
206
260
|
position: import("angular-three").NgtVector3;
|
|
207
261
|
up: import("angular-three").NgtVector3;
|
|
208
262
|
scale: import("angular-three").NgtVector3;
|
|
@@ -213,64 +267,20 @@ export declare class NgtsEdges {
|
|
|
213
267
|
dispose: (() => void) | null;
|
|
214
268
|
raycast: import("three").Object3D["raycast"] | null;
|
|
215
269
|
}, 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: {
|
|
216
|
-
|
|
217
|
-
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
218
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
219
|
-
__ngt_args__: [LineMaterialParameters];
|
|
220
|
-
id?: number | undefined;
|
|
221
|
-
uuid?: string | undefined;
|
|
222
|
-
name?: string | undefined;
|
|
223
|
-
type?: string | undefined;
|
|
224
|
-
visible?: boolean | undefined;
|
|
225
|
-
userData?: Record<string, any> | undefined;
|
|
226
|
-
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
227
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
228
|
-
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
229
|
-
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
230
|
-
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
231
|
-
dispose: {};
|
|
232
|
-
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
233
|
-
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
234
|
-
dispose: {};
|
|
235
|
-
}[T]) => void) | undefined;
|
|
270
|
+
vertexColors?: boolean | undefined;
|
|
236
271
|
color?: ColorRepresentation | undefined;
|
|
272
|
+
alphaToCoverage?: boolean | undefined;
|
|
237
273
|
dashed?: boolean | undefined;
|
|
238
274
|
dashScale?: number | undefined;
|
|
239
275
|
dashSize?: number | undefined;
|
|
240
276
|
dashOffset?: number | undefined;
|
|
241
277
|
gapSize?: number | undefined;
|
|
242
|
-
opacity?: number | undefined;
|
|
243
|
-
readonly isLineMaterial?: true | undefined;
|
|
244
278
|
linewidth?: number | undefined;
|
|
245
279
|
resolution?: import("three").Vector2 | undefined;
|
|
246
|
-
alphaToCoverage?: boolean | undefined;
|
|
247
|
-
worldUnits?: boolean | undefined;
|
|
248
|
-
readonly isShaderMaterial?: true | undefined;
|
|
249
|
-
defines?: {
|
|
250
|
-
[key: string]: any;
|
|
251
|
-
} | undefined;
|
|
252
|
-
uniforms?: {
|
|
253
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
254
|
-
} | undefined;
|
|
255
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
256
|
-
vertexShader?: string | undefined;
|
|
257
|
-
fragmentShader?: string | undefined;
|
|
258
280
|
wireframe?: boolean | undefined;
|
|
259
|
-
|
|
260
|
-
fog?: boolean | undefined;
|
|
261
|
-
lights?: boolean | undefined;
|
|
262
|
-
clipping?: boolean | undefined;
|
|
263
|
-
extensions?: {
|
|
264
|
-
clipCullDistance: boolean;
|
|
265
|
-
multiDraw: boolean;
|
|
266
|
-
} | undefined;
|
|
267
|
-
defaultAttributeValues?: any;
|
|
268
|
-
index0AttributeName?: string | undefined;
|
|
269
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
270
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
271
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
272
|
-
readonly isMaterial?: true | undefined;
|
|
281
|
+
worldUnits?: boolean | undefined;
|
|
273
282
|
alphaHash?: boolean | undefined;
|
|
283
|
+
alphaTest?: number | undefined;
|
|
274
284
|
blendAlpha?: number | undefined;
|
|
275
285
|
blendColor?: ColorRepresentation | undefined;
|
|
276
286
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -284,17 +294,14 @@ export declare class NgtsEdges {
|
|
|
284
294
|
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
285
295
|
clipShadows?: boolean | undefined;
|
|
286
296
|
colorWrite?: boolean | undefined;
|
|
297
|
+
defines?: {
|
|
298
|
+
[key: string]: any;
|
|
299
|
+
} | undefined;
|
|
287
300
|
depthFunc?: import("three").DepthModes | undefined;
|
|
288
301
|
depthTest?: boolean | undefined;
|
|
289
302
|
depthWrite?: boolean | undefined;
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
stencilRef?: number | undefined;
|
|
293
|
-
stencilWriteMask?: number | undefined;
|
|
294
|
-
stencilFuncMask?: number | undefined;
|
|
295
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
296
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
297
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
303
|
+
name?: string | undefined;
|
|
304
|
+
opacity?: number | undefined;
|
|
298
305
|
polygonOffset?: boolean | undefined;
|
|
299
306
|
polygonOffsetFactor?: number | undefined;
|
|
300
307
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -306,9 +313,56 @@ export declare class NgtsEdges {
|
|
|
306
313
|
shadowSide?: import("three").Side | null | undefined;
|
|
307
314
|
toneMapped?: boolean | undefined;
|
|
308
315
|
transparent?: boolean | undefined;
|
|
309
|
-
|
|
316
|
+
visible?: boolean | undefined;
|
|
317
|
+
stencilWrite?: boolean | undefined;
|
|
318
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
319
|
+
stencilRef?: number | undefined;
|
|
320
|
+
stencilWriteMask?: number | undefined;
|
|
321
|
+
stencilFuncMask?: number | undefined;
|
|
322
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
323
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
324
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
325
|
+
userData?: Record<string, any> | undefined;
|
|
326
|
+
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;
|
|
327
|
+
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);
|
|
328
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
329
|
+
__ngt_args__: [LineMaterialParameters];
|
|
330
|
+
type?: string | undefined;
|
|
331
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
332
|
+
id?: number | undefined;
|
|
333
|
+
uuid?: string | undefined;
|
|
334
|
+
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;
|
|
335
|
+
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
336
|
+
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
337
|
+
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
338
|
+
dispose: {};
|
|
339
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
340
|
+
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
341
|
+
dispose: {};
|
|
342
|
+
}[T]) => void) | undefined;
|
|
343
|
+
readonly isLineMaterial?: true | undefined;
|
|
344
|
+
readonly isShaderMaterial?: true | undefined;
|
|
345
|
+
uniforms?: {
|
|
346
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
347
|
+
} | undefined;
|
|
348
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
349
|
+
vertexShader?: string | undefined;
|
|
350
|
+
fragmentShader?: string | undefined;
|
|
351
|
+
wireframeLinewidth?: number | undefined;
|
|
352
|
+
fog?: boolean | undefined;
|
|
353
|
+
lights?: boolean | undefined;
|
|
354
|
+
clipping?: boolean | undefined;
|
|
355
|
+
extensions?: {
|
|
356
|
+
clipCullDistance: boolean;
|
|
357
|
+
multiDraw: boolean;
|
|
358
|
+
} | undefined;
|
|
359
|
+
defaultAttributeValues?: any;
|
|
360
|
+
index0AttributeName?: string | undefined;
|
|
361
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
362
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
363
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
364
|
+
readonly isMaterial?: true | undefined;
|
|
310
365
|
version?: number | undefined;
|
|
311
|
-
alphaTest?: number | undefined;
|
|
312
366
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
313
367
|
customProgramCacheKey?: (() => string) | undefined;
|
|
314
368
|
needsUpdate?: boolean | undefined;
|
|
@@ -324,15 +378,27 @@ export declare class NgtsEdges {
|
|
|
324
378
|
raycast: import("three").Object3D["raycast"] | null;
|
|
325
379
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
326
380
|
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: {
|
|
381
|
+
name?: string | undefined;
|
|
382
|
+
visible?: boolean | undefined;
|
|
383
|
+
userData?: Record<string, any> | undefined;
|
|
327
384
|
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);
|
|
328
385
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & any;
|
|
329
386
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
330
387
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
388
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
389
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
390
|
+
readonly isMesh?: true | undefined;
|
|
391
|
+
readonly type?: string | undefined;
|
|
392
|
+
morphTargetInfluences?: number[] | undefined;
|
|
393
|
+
morphTargetDictionary?: {
|
|
394
|
+
[key: string]: number;
|
|
395
|
+
} | undefined;
|
|
396
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
397
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
398
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
331
399
|
readonly isObject3D?: true | undefined;
|
|
332
400
|
readonly id?: number | undefined;
|
|
333
401
|
uuid?: string | undefined;
|
|
334
|
-
name?: string | undefined;
|
|
335
|
-
readonly type?: string | undefined;
|
|
336
402
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
337
403
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
338
404
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -341,13 +407,11 @@ export declare class NgtsEdges {
|
|
|
341
407
|
matrixAutoUpdate?: boolean | undefined;
|
|
342
408
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
343
409
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
344
|
-
visible?: boolean | undefined;
|
|
345
410
|
castShadow?: boolean | undefined;
|
|
346
411
|
receiveShadow?: boolean | undefined;
|
|
347
412
|
frustumCulled?: boolean | undefined;
|
|
348
413
|
renderOrder?: number | undefined;
|
|
349
414
|
animations?: import("three").AnimationClip[] | undefined;
|
|
350
|
-
userData?: Record<string, any> | undefined;
|
|
351
415
|
customDepthMaterial?: import("three").Material | undefined;
|
|
352
416
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
353
417
|
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;
|
|
@@ -393,20 +457,10 @@ export declare class NgtsEdges {
|
|
|
393
457
|
updateMatrix?: (() => void) | undefined;
|
|
394
458
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
395
459
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
396
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
397
460
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
398
461
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
399
462
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
400
463
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
401
|
-
readonly isMesh?: true | undefined;
|
|
402
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
403
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
404
|
-
morphTargetInfluences?: number[] | undefined;
|
|
405
|
-
morphTargetDictionary?: {
|
|
406
|
-
[key: string]: number;
|
|
407
|
-
} | undefined;
|
|
408
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
409
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
410
464
|
position: import("angular-three").NgtVector3;
|
|
411
465
|
up: import("angular-three").NgtVector3;
|
|
412
466
|
scale: import("angular-three").NgtVector3;
|
|
@@ -417,15 +471,30 @@ export declare class NgtsEdges {
|
|
|
417
471
|
dispose: (() => void) | null;
|
|
418
472
|
raycast: import("three").Object3D["raycast"] | null;
|
|
419
473
|
}, 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: {
|
|
474
|
+
name?: string | undefined;
|
|
475
|
+
visible?: boolean | undefined;
|
|
476
|
+
userData?: Record<string, any> | undefined;
|
|
420
477
|
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);
|
|
421
478
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & any;
|
|
422
479
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
423
480
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
481
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
482
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
483
|
+
readonly isLine2?: true | undefined;
|
|
484
|
+
readonly isLineSegments2?: true | undefined;
|
|
485
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
486
|
+
readonly isMesh?: true | undefined;
|
|
487
|
+
readonly type?: string | undefined;
|
|
488
|
+
morphTargetInfluences?: number[] | undefined;
|
|
489
|
+
morphTargetDictionary?: {
|
|
490
|
+
[key: string]: number;
|
|
491
|
+
} | undefined;
|
|
492
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
493
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
494
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
424
495
|
readonly isObject3D?: true | undefined;
|
|
425
496
|
readonly id?: number | undefined;
|
|
426
497
|
uuid?: string | undefined;
|
|
427
|
-
name?: string | undefined;
|
|
428
|
-
readonly type?: string | undefined;
|
|
429
498
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
430
499
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
431
500
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -434,13 +503,11 @@ export declare class NgtsEdges {
|
|
|
434
503
|
matrixAutoUpdate?: boolean | undefined;
|
|
435
504
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
436
505
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
437
|
-
visible?: boolean | undefined;
|
|
438
506
|
castShadow?: boolean | undefined;
|
|
439
507
|
receiveShadow?: boolean | undefined;
|
|
440
508
|
frustumCulled?: boolean | undefined;
|
|
441
509
|
renderOrder?: number | undefined;
|
|
442
510
|
animations?: import("three").AnimationClip[] | undefined;
|
|
443
|
-
userData?: Record<string, any> | undefined;
|
|
444
511
|
customDepthMaterial?: import("three").Material | undefined;
|
|
445
512
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
446
513
|
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;
|
|
@@ -486,23 +553,10 @@ export declare class NgtsEdges {
|
|
|
486
553
|
updateMatrix?: (() => void) | undefined;
|
|
487
554
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
488
555
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
489
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
490
556
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
491
557
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
492
558
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) | undefined;
|
|
493
559
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
494
|
-
readonly isMesh?: true | undefined;
|
|
495
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
496
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
497
|
-
morphTargetInfluences?: number[] | undefined;
|
|
498
|
-
morphTargetDictionary?: {
|
|
499
|
-
[key: string]: number;
|
|
500
|
-
} | undefined;
|
|
501
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
502
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
503
|
-
readonly isLine2?: true | undefined;
|
|
504
|
-
readonly isLineSegments2?: true | undefined;
|
|
505
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
506
560
|
position: import("angular-three").NgtVector3;
|
|
507
561
|
up: import("angular-three").NgtVector3;
|
|
508
562
|
scale: import("angular-three").NgtVector3;
|
|
@@ -513,64 +567,20 @@ export declare class NgtsEdges {
|
|
|
513
567
|
dispose: (() => void) | null;
|
|
514
568
|
raycast: import("three").Object3D["raycast"] | null;
|
|
515
569
|
}, 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: {
|
|
516
|
-
|
|
517
|
-
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").LineMaterial, [LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
518
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
519
|
-
__ngt_args__: [LineMaterialParameters];
|
|
520
|
-
id?: number | undefined;
|
|
521
|
-
uuid?: string | undefined;
|
|
522
|
-
name?: string | undefined;
|
|
523
|
-
type?: string | undefined;
|
|
524
|
-
visible?: boolean | undefined;
|
|
525
|
-
userData?: Record<string, any> | undefined;
|
|
526
|
-
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
527
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
528
|
-
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
529
|
-
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
530
|
-
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
531
|
-
dispose: {};
|
|
532
|
-
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
533
|
-
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
534
|
-
dispose: {};
|
|
535
|
-
}[T]) => void) | undefined;
|
|
570
|
+
vertexColors?: boolean | undefined;
|
|
536
571
|
color?: ColorRepresentation | undefined;
|
|
572
|
+
alphaToCoverage?: boolean | undefined;
|
|
537
573
|
dashed?: boolean | undefined;
|
|
538
574
|
dashScale?: number | undefined;
|
|
539
575
|
dashSize?: number | undefined;
|
|
540
576
|
dashOffset?: number | undefined;
|
|
541
577
|
gapSize?: number | undefined;
|
|
542
|
-
opacity?: number | undefined;
|
|
543
|
-
readonly isLineMaterial?: true | undefined;
|
|
544
578
|
linewidth?: number | undefined;
|
|
545
579
|
resolution?: import("three").Vector2 | undefined;
|
|
546
|
-
alphaToCoverage?: boolean | undefined;
|
|
547
|
-
worldUnits?: boolean | undefined;
|
|
548
|
-
readonly isShaderMaterial?: true | undefined;
|
|
549
|
-
defines?: {
|
|
550
|
-
[key: string]: any;
|
|
551
|
-
} | undefined;
|
|
552
|
-
uniforms?: {
|
|
553
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
554
|
-
} | undefined;
|
|
555
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
556
|
-
vertexShader?: string | undefined;
|
|
557
|
-
fragmentShader?: string | undefined;
|
|
558
580
|
wireframe?: boolean | undefined;
|
|
559
|
-
|
|
560
|
-
fog?: boolean | undefined;
|
|
561
|
-
lights?: boolean | undefined;
|
|
562
|
-
clipping?: boolean | undefined;
|
|
563
|
-
extensions?: {
|
|
564
|
-
clipCullDistance: boolean;
|
|
565
|
-
multiDraw: boolean;
|
|
566
|
-
} | undefined;
|
|
567
|
-
defaultAttributeValues?: any;
|
|
568
|
-
index0AttributeName?: string | undefined;
|
|
569
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
570
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
571
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
572
|
-
readonly isMaterial?: true | undefined;
|
|
581
|
+
worldUnits?: boolean | undefined;
|
|
573
582
|
alphaHash?: boolean | undefined;
|
|
583
|
+
alphaTest?: number | undefined;
|
|
574
584
|
blendAlpha?: number | undefined;
|
|
575
585
|
blendColor?: ColorRepresentation | undefined;
|
|
576
586
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -584,17 +594,14 @@ export declare class NgtsEdges {
|
|
|
584
594
|
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
585
595
|
clipShadows?: boolean | undefined;
|
|
586
596
|
colorWrite?: boolean | undefined;
|
|
597
|
+
defines?: {
|
|
598
|
+
[key: string]: any;
|
|
599
|
+
} | undefined;
|
|
587
600
|
depthFunc?: import("three").DepthModes | undefined;
|
|
588
601
|
depthTest?: boolean | undefined;
|
|
589
602
|
depthWrite?: boolean | undefined;
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
stencilRef?: number | undefined;
|
|
593
|
-
stencilWriteMask?: number | undefined;
|
|
594
|
-
stencilFuncMask?: number | undefined;
|
|
595
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
596
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
597
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
603
|
+
name?: string | undefined;
|
|
604
|
+
opacity?: number | undefined;
|
|
598
605
|
polygonOffset?: boolean | undefined;
|
|
599
606
|
polygonOffsetFactor?: number | undefined;
|
|
600
607
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -606,9 +613,56 @@ export declare class NgtsEdges {
|
|
|
606
613
|
shadowSide?: import("three").Side | null | undefined;
|
|
607
614
|
toneMapped?: boolean | undefined;
|
|
608
615
|
transparent?: boolean | undefined;
|
|
609
|
-
|
|
616
|
+
visible?: boolean | undefined;
|
|
617
|
+
stencilWrite?: boolean | undefined;
|
|
618
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
619
|
+
stencilRef?: number | undefined;
|
|
620
|
+
stencilWriteMask?: number | undefined;
|
|
621
|
+
stencilFuncMask?: number | undefined;
|
|
622
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
623
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
624
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
625
|
+
userData?: Record<string, any> | undefined;
|
|
626
|
+
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);
|
|
627
|
+
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;
|
|
628
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
629
|
+
__ngt_args__: [LineMaterialParameters];
|
|
630
|
+
type?: string | undefined;
|
|
631
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
632
|
+
id?: number | undefined;
|
|
633
|
+
uuid?: string | undefined;
|
|
634
|
+
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;
|
|
635
|
+
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
636
|
+
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
637
|
+
hasEventListener?: (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
638
|
+
dispose: {};
|
|
639
|
+
}[T], T, import("three-stdlib").LineMaterial>) => boolean) | undefined;
|
|
640
|
+
dispatchEvent?: (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
641
|
+
dispose: {};
|
|
642
|
+
}[T]) => void) | undefined;
|
|
643
|
+
readonly isLineMaterial?: true | undefined;
|
|
644
|
+
readonly isShaderMaterial?: true | undefined;
|
|
645
|
+
uniforms?: {
|
|
646
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
647
|
+
} | undefined;
|
|
648
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
649
|
+
vertexShader?: string | undefined;
|
|
650
|
+
fragmentShader?: string | undefined;
|
|
651
|
+
wireframeLinewidth?: number | undefined;
|
|
652
|
+
fog?: boolean | undefined;
|
|
653
|
+
lights?: boolean | undefined;
|
|
654
|
+
clipping?: boolean | undefined;
|
|
655
|
+
extensions?: {
|
|
656
|
+
clipCullDistance: boolean;
|
|
657
|
+
multiDraw: boolean;
|
|
658
|
+
} | undefined;
|
|
659
|
+
defaultAttributeValues?: any;
|
|
660
|
+
index0AttributeName?: string | undefined;
|
|
661
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
662
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
663
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
664
|
+
readonly isMaterial?: true | undefined;
|
|
610
665
|
version?: number | undefined;
|
|
611
|
-
alphaTest?: number | undefined;
|
|
612
666
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
613
667
|
customProgramCacheKey?: (() => string) | undefined;
|
|
614
668
|
needsUpdate?: boolean | undefined;
|
|
@@ -625,11 +679,22 @@ export declare class NgtsEdges {
|
|
|
625
679
|
}, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void)) | undefined;
|
|
626
680
|
attach?: string | string[] | import("angular-three").NgtAttachFunction | undefined;
|
|
627
681
|
__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;
|
|
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
|
+
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;
|
|
628
695
|
isObject3D?: true | undefined;
|
|
629
696
|
id?: number | undefined;
|
|
630
697
|
uuid?: string | undefined;
|
|
631
|
-
name?: string | undefined;
|
|
632
|
-
type?: string | undefined;
|
|
633
698
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
634
699
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
635
700
|
modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -638,13 +703,11 @@ export declare class NgtsEdges {
|
|
|
638
703
|
matrixAutoUpdate?: boolean | undefined;
|
|
639
704
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
640
705
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
641
|
-
visible?: boolean | undefined;
|
|
642
706
|
castShadow?: boolean | undefined;
|
|
643
707
|
receiveShadow?: boolean | undefined;
|
|
644
708
|
frustumCulled?: boolean | undefined;
|
|
645
709
|
renderOrder?: number | undefined;
|
|
646
710
|
animations?: import("three").AnimationClip[] | undefined;
|
|
647
|
-
userData?: Record<string, any> | undefined;
|
|
648
711
|
customDepthMaterial?: import("three").Material | undefined;
|
|
649
712
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
650
713
|
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;
|
|
@@ -690,7 +753,6 @@ export declare class NgtsEdges {
|
|
|
690
753
|
updateMatrix?: (() => void) | undefined;
|
|
691
754
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
692
755
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
693
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
694
756
|
clone?: (((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) & ((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
695
757
|
copy?: (((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) & ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
696
758
|
hasEventListener?: ((<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) & (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, import("three-stdlib").Line2>) => boolean) & (<T extends "dispose">(type: T, listener: import("three").EventListener<{
|
|
@@ -699,38 +761,14 @@ export declare class NgtsEdges {
|
|
|
699
761
|
dispatchEvent?: ((<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) & (<T extends "dispose">(event: import("three").BaseEvent<T> & {
|
|
700
762
|
dispose: {};
|
|
701
763
|
}[T]) => void)) | undefined;
|
|
702
|
-
isMesh?: true | undefined;
|
|
703
|
-
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
704
|
-
morphTargetInfluences?: number[] | undefined;
|
|
705
|
-
morphTargetDictionary?: {
|
|
706
|
-
[key: string]: number;
|
|
707
|
-
} | undefined;
|
|
708
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
709
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
710
|
-
isLine2?: true | undefined;
|
|
711
|
-
isLineSegments2?: true | undefined;
|
|
712
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | 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;
|
|
720
764
|
isLineMaterial?: true | undefined;
|
|
721
|
-
linewidth?: number | undefined;
|
|
722
|
-
resolution?: import("three").Vector2 | undefined;
|
|
723
|
-
alphaToCoverage?: boolean | undefined;
|
|
724
|
-
worldUnits?: boolean | undefined;
|
|
725
765
|
isShaderMaterial?: true | undefined;
|
|
726
|
-
defines?: any;
|
|
727
766
|
uniforms?: {
|
|
728
767
|
[uniform: string]: import("three").IUniform<any>;
|
|
729
768
|
} | undefined;
|
|
730
769
|
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
731
770
|
vertexShader?: string | undefined;
|
|
732
771
|
fragmentShader?: string | undefined;
|
|
733
|
-
wireframe?: boolean | undefined;
|
|
734
772
|
wireframeLinewidth?: number | undefined;
|
|
735
773
|
fog?: boolean | undefined;
|
|
736
774
|
lights?: boolean | undefined;
|
|
@@ -745,49 +783,11 @@ export declare class NgtsEdges {
|
|
|
745
783
|
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
746
784
|
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
747
785
|
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;
|
|
784
786
|
version?: number | undefined;
|
|
785
|
-
alphaTest?: number | undefined;
|
|
786
787
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
787
788
|
customProgramCacheKey?: (() => string) | undefined;
|
|
788
789
|
needsUpdate?: boolean | undefined;
|
|
789
790
|
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[];
|