angular-three-soba 2.0.0-beta.261 → 2.0.0-beta.262
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 +128 -128
- package/abstractions/lib/edges.d.ts +130 -130
- package/abstractions/lib/gradient-texture.d.ts +1 -1
- package/abstractions/lib/grid.d.ts +6 -6
- package/abstractions/lib/line.d.ts +3 -3
- package/abstractions/lib/prism-geometry.d.ts +4 -4
- package/abstractions/lib/text-3d.d.ts +13 -13
- package/abstractions/lib/text.d.ts +2 -2
- package/cameras/lib/cube-camera.d.ts +1 -1
- package/cameras/lib/orthographic-camera.d.ts +1 -1
- package/cameras/lib/perspective-camera.d.ts +1 -1
- package/controls/index.d.ts +1 -0
- package/controls/lib/camera-controls.d.ts +1 -1
- package/controls/lib/orbit-controls.d.ts +1 -1
- package/controls/lib/scroll-controls.d.ts +78 -0
- package/esm2022/controls/index.mjs +2 -1
- package/esm2022/controls/lib/scroll-controls.mjs +268 -0
- package/fesm2022/angular-three-soba-controls.mjs +271 -7
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/materials/lib/custom-shader-material.d.ts +1 -1
- 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 +5 -5
- package/misc/lib/sampler.d.ts +1 -1
- package/package.json +12 -12
- package/staging/README.md +4 -4
- 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/render-texture.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +2 -2
- package/staging/lib/stage.d.ts +1 -1
|
@@ -21,10 +21,10 @@ export declare class NgtsEdges {
|
|
|
21
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;
|
|
22
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").NgtObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
23
23
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
24
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
25
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
26
24
|
readonly isMesh?: true | undefined;
|
|
27
25
|
readonly type?: string | undefined;
|
|
26
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
27
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
28
28
|
morphTargetInfluences?: number[] | undefined;
|
|
29
29
|
morphTargetDictionary?: {
|
|
30
30
|
[key: string]: number;
|
|
@@ -122,13 +122,10 @@ export declare class NgtsEdges {
|
|
|
122
122
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & any;
|
|
123
123
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
124
124
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
125
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
126
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
127
|
-
readonly isLine2?: true | undefined;
|
|
128
|
-
readonly isLineSegments2?: true | undefined;
|
|
129
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
130
125
|
readonly isMesh?: true | undefined;
|
|
131
126
|
readonly type?: string | undefined;
|
|
127
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
128
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
132
129
|
morphTargetInfluences?: number[] | undefined;
|
|
133
130
|
morphTargetDictionary?: {
|
|
134
131
|
[key: string]: number;
|
|
@@ -213,6 +210,9 @@ export declare class NgtsEdges {
|
|
|
213
210
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
214
211
|
} | undefined;
|
|
215
212
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
213
|
+
readonly isLine2?: true | undefined;
|
|
214
|
+
readonly isLineSegments2?: true | undefined;
|
|
215
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
216
216
|
position: import("angular-three").NgtVector3;
|
|
217
217
|
up: import("angular-three").NgtVector3;
|
|
218
218
|
scale: import("angular-three").NgtVector3;
|
|
@@ -246,43 +246,19 @@ export declare class NgtsEdges {
|
|
|
246
246
|
dispose: {};
|
|
247
247
|
}[T]) => void) | undefined;
|
|
248
248
|
color?: ColorRepresentation | undefined;
|
|
249
|
+
vertexColors?: boolean | undefined;
|
|
250
|
+
alphaToCoverage?: boolean | undefined;
|
|
249
251
|
dashed?: boolean | undefined;
|
|
250
252
|
dashScale?: number | undefined;
|
|
251
253
|
dashSize?: number | undefined;
|
|
252
254
|
dashOffset?: number | undefined;
|
|
253
255
|
gapSize?: number | undefined;
|
|
254
|
-
opacity?: number | undefined;
|
|
255
|
-
readonly isLineMaterial?: true | undefined;
|
|
256
256
|
linewidth?: number | undefined;
|
|
257
257
|
resolution?: import("three").Vector2 | undefined;
|
|
258
|
-
alphaToCoverage?: boolean | undefined;
|
|
259
|
-
worldUnits?: boolean | undefined;
|
|
260
|
-
readonly isShaderMaterial?: true | undefined;
|
|
261
|
-
defines?: {
|
|
262
|
-
[key: string]: any;
|
|
263
|
-
} | undefined;
|
|
264
|
-
uniforms?: {
|
|
265
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
266
|
-
} | undefined;
|
|
267
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
268
|
-
vertexShader?: string | undefined;
|
|
269
|
-
fragmentShader?: string | undefined;
|
|
270
258
|
wireframe?: boolean | undefined;
|
|
271
|
-
|
|
272
|
-
fog?: boolean | undefined;
|
|
273
|
-
lights?: boolean | undefined;
|
|
274
|
-
clipping?: boolean | undefined;
|
|
275
|
-
extensions?: {
|
|
276
|
-
clipCullDistance: boolean;
|
|
277
|
-
multiDraw: boolean;
|
|
278
|
-
} | undefined;
|
|
279
|
-
defaultAttributeValues?: any;
|
|
280
|
-
index0AttributeName?: string | undefined;
|
|
281
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
282
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
283
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
284
|
-
readonly isMaterial?: true | undefined;
|
|
259
|
+
worldUnits?: boolean | undefined;
|
|
285
260
|
alphaHash?: boolean | undefined;
|
|
261
|
+
alphaTest?: number | undefined;
|
|
286
262
|
blendAlpha?: number | undefined;
|
|
287
263
|
blendColor?: ColorRepresentation | undefined;
|
|
288
264
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -296,17 +272,13 @@ export declare class NgtsEdges {
|
|
|
296
272
|
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
297
273
|
clipShadows?: boolean | undefined;
|
|
298
274
|
colorWrite?: boolean | undefined;
|
|
275
|
+
defines?: {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
} | undefined;
|
|
299
278
|
depthFunc?: import("three").DepthModes | undefined;
|
|
300
279
|
depthTest?: boolean | undefined;
|
|
301
280
|
depthWrite?: boolean | undefined;
|
|
302
|
-
|
|
303
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
304
|
-
stencilRef?: number | undefined;
|
|
305
|
-
stencilWriteMask?: number | undefined;
|
|
306
|
-
stencilFuncMask?: number | undefined;
|
|
307
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
308
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
309
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
281
|
+
opacity?: number | undefined;
|
|
310
282
|
polygonOffset?: boolean | undefined;
|
|
311
283
|
polygonOffsetFactor?: number | undefined;
|
|
312
284
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -318,9 +290,37 @@ export declare class NgtsEdges {
|
|
|
318
290
|
shadowSide?: import("three").Side | null | undefined;
|
|
319
291
|
toneMapped?: boolean | undefined;
|
|
320
292
|
transparent?: boolean | undefined;
|
|
321
|
-
|
|
293
|
+
stencilWrite?: boolean | undefined;
|
|
294
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
295
|
+
stencilRef?: number | undefined;
|
|
296
|
+
stencilWriteMask?: number | undefined;
|
|
297
|
+
stencilFuncMask?: number | undefined;
|
|
298
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
299
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
300
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
301
|
+
readonly isLineMaterial?: true | undefined;
|
|
302
|
+
readonly isShaderMaterial?: true | undefined;
|
|
303
|
+
uniforms?: {
|
|
304
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
305
|
+
} | undefined;
|
|
306
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
307
|
+
vertexShader?: string | undefined;
|
|
308
|
+
fragmentShader?: string | undefined;
|
|
309
|
+
wireframeLinewidth?: number | undefined;
|
|
310
|
+
fog?: boolean | undefined;
|
|
311
|
+
lights?: boolean | undefined;
|
|
312
|
+
clipping?: boolean | undefined;
|
|
313
|
+
extensions?: {
|
|
314
|
+
clipCullDistance: boolean;
|
|
315
|
+
multiDraw: boolean;
|
|
316
|
+
} | undefined;
|
|
317
|
+
defaultAttributeValues?: any;
|
|
318
|
+
index0AttributeName?: string | undefined;
|
|
319
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
320
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
321
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
322
|
+
readonly isMaterial?: true | undefined;
|
|
322
323
|
version?: number | undefined;
|
|
323
|
-
alphaTest?: number | undefined;
|
|
324
324
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
325
325
|
customProgramCacheKey?: (() => string) | undefined;
|
|
326
326
|
needsUpdate?: boolean | undefined;
|
|
@@ -339,10 +339,10 @@ export declare class NgtsEdges {
|
|
|
339
339
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
340
340
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey_1]) => any) => void) & any;
|
|
341
341
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
342
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
343
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
344
342
|
readonly isMesh?: true | undefined;
|
|
345
343
|
readonly type?: string | undefined;
|
|
344
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
345
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
346
346
|
morphTargetInfluences?: number[] | undefined;
|
|
347
347
|
morphTargetDictionary?: {
|
|
348
348
|
[key: string]: number;
|
|
@@ -440,13 +440,10 @@ export declare class NgtsEdges {
|
|
|
440
440
|
addEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & (<TEventKey_1 extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey_1]) => any) => void);
|
|
441
441
|
removeEventListener: (<TEventKey_1 extends keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey_1, listener: (this: import("angular-three").NgtNodeElement<import("three-stdlib").Line2, typeof import("three-stdlib").Line2>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>[TEventKey_1]) => any) => void) & any;
|
|
442
442
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
443
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
444
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
445
|
-
readonly isLine2?: true | undefined;
|
|
446
|
-
readonly isLineSegments2?: true | undefined;
|
|
447
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
448
443
|
readonly isMesh?: true | undefined;
|
|
449
444
|
readonly type?: string | undefined;
|
|
445
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
446
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
450
447
|
morphTargetInfluences?: number[] | undefined;
|
|
451
448
|
morphTargetDictionary?: {
|
|
452
449
|
[key: string]: number;
|
|
@@ -531,6 +528,9 @@ export declare class NgtsEdges {
|
|
|
531
528
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
532
529
|
} | undefined;
|
|
533
530
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
531
|
+
readonly isLine2?: true | undefined;
|
|
532
|
+
readonly isLineSegments2?: true | undefined;
|
|
533
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
534
534
|
position: import("angular-three").NgtVector3;
|
|
535
535
|
up: import("angular-three").NgtVector3;
|
|
536
536
|
scale: import("angular-three").NgtVector3;
|
|
@@ -564,43 +564,19 @@ export declare class NgtsEdges {
|
|
|
564
564
|
dispose: {};
|
|
565
565
|
}[T]) => void) | undefined;
|
|
566
566
|
color?: ColorRepresentation | undefined;
|
|
567
|
+
vertexColors?: boolean | undefined;
|
|
568
|
+
alphaToCoverage?: boolean | undefined;
|
|
567
569
|
dashed?: boolean | undefined;
|
|
568
570
|
dashScale?: number | undefined;
|
|
569
571
|
dashSize?: number | undefined;
|
|
570
572
|
dashOffset?: number | undefined;
|
|
571
573
|
gapSize?: number | undefined;
|
|
572
|
-
opacity?: number | undefined;
|
|
573
|
-
readonly isLineMaterial?: true | undefined;
|
|
574
574
|
linewidth?: number | undefined;
|
|
575
575
|
resolution?: import("three").Vector2 | undefined;
|
|
576
|
-
alphaToCoverage?: boolean | undefined;
|
|
577
|
-
worldUnits?: boolean | undefined;
|
|
578
|
-
readonly isShaderMaterial?: true | undefined;
|
|
579
|
-
defines?: {
|
|
580
|
-
[key: string]: any;
|
|
581
|
-
} | undefined;
|
|
582
|
-
uniforms?: {
|
|
583
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
584
|
-
} | undefined;
|
|
585
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
586
|
-
vertexShader?: string | undefined;
|
|
587
|
-
fragmentShader?: string | undefined;
|
|
588
576
|
wireframe?: boolean | undefined;
|
|
589
|
-
|
|
590
|
-
fog?: boolean | undefined;
|
|
591
|
-
lights?: boolean | undefined;
|
|
592
|
-
clipping?: boolean | undefined;
|
|
593
|
-
extensions?: {
|
|
594
|
-
clipCullDistance: boolean;
|
|
595
|
-
multiDraw: boolean;
|
|
596
|
-
} | undefined;
|
|
597
|
-
defaultAttributeValues?: any;
|
|
598
|
-
index0AttributeName?: string | undefined;
|
|
599
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
600
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
601
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
602
|
-
readonly isMaterial?: true | undefined;
|
|
577
|
+
worldUnits?: boolean | undefined;
|
|
603
578
|
alphaHash?: boolean | undefined;
|
|
579
|
+
alphaTest?: number | undefined;
|
|
604
580
|
blendAlpha?: number | undefined;
|
|
605
581
|
blendColor?: ColorRepresentation | undefined;
|
|
606
582
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -614,17 +590,13 @@ export declare class NgtsEdges {
|
|
|
614
590
|
clippingPlanes?: import("three").Plane[] | null | undefined;
|
|
615
591
|
clipShadows?: boolean | undefined;
|
|
616
592
|
colorWrite?: boolean | undefined;
|
|
593
|
+
defines?: {
|
|
594
|
+
[key: string]: any;
|
|
595
|
+
} | undefined;
|
|
617
596
|
depthFunc?: import("three").DepthModes | undefined;
|
|
618
597
|
depthTest?: boolean | undefined;
|
|
619
598
|
depthWrite?: boolean | undefined;
|
|
620
|
-
|
|
621
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
622
|
-
stencilRef?: number | undefined;
|
|
623
|
-
stencilWriteMask?: number | undefined;
|
|
624
|
-
stencilFuncMask?: number | undefined;
|
|
625
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
626
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
627
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
599
|
+
opacity?: number | undefined;
|
|
628
600
|
polygonOffset?: boolean | undefined;
|
|
629
601
|
polygonOffsetFactor?: number | undefined;
|
|
630
602
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -636,9 +608,37 @@ export declare class NgtsEdges {
|
|
|
636
608
|
shadowSide?: import("three").Side | null | undefined;
|
|
637
609
|
toneMapped?: boolean | undefined;
|
|
638
610
|
transparent?: boolean | undefined;
|
|
639
|
-
|
|
611
|
+
stencilWrite?: boolean | undefined;
|
|
612
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
613
|
+
stencilRef?: number | undefined;
|
|
614
|
+
stencilWriteMask?: number | undefined;
|
|
615
|
+
stencilFuncMask?: number | undefined;
|
|
616
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
617
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
618
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
619
|
+
readonly isLineMaterial?: true | undefined;
|
|
620
|
+
readonly isShaderMaterial?: true | undefined;
|
|
621
|
+
uniforms?: {
|
|
622
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
623
|
+
} | undefined;
|
|
624
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
625
|
+
vertexShader?: string | undefined;
|
|
626
|
+
fragmentShader?: string | undefined;
|
|
627
|
+
wireframeLinewidth?: number | undefined;
|
|
628
|
+
fog?: boolean | undefined;
|
|
629
|
+
lights?: boolean | undefined;
|
|
630
|
+
clipping?: boolean | undefined;
|
|
631
|
+
extensions?: {
|
|
632
|
+
clipCullDistance: boolean;
|
|
633
|
+
multiDraw: boolean;
|
|
634
|
+
} | undefined;
|
|
635
|
+
defaultAttributeValues?: any;
|
|
636
|
+
index0AttributeName?: string | undefined;
|
|
637
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
638
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
639
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
640
|
+
readonly isMaterial?: true | undefined;
|
|
640
641
|
version?: number | undefined;
|
|
641
|
-
alphaTest?: number | undefined;
|
|
642
642
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
643
643
|
customProgramCacheKey?: (() => string) | undefined;
|
|
644
644
|
needsUpdate?: boolean | undefined;
|
|
@@ -661,12 +661,9 @@ export declare class NgtsEdges {
|
|
|
661
661
|
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
662
662
|
layers?: import("angular-three").NgtLayers | undefined;
|
|
663
663
|
dispose?: (() => void) | null | undefined;
|
|
664
|
-
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
665
|
-
isLine2?: true | undefined;
|
|
666
|
-
isLineSegments2?: true | undefined;
|
|
667
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
668
664
|
isMesh?: true | undefined;
|
|
669
665
|
type?: string | undefined;
|
|
666
|
+
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
670
667
|
morphTargetInfluences?: number[] | undefined;
|
|
671
668
|
morphTargetDictionary?: {
|
|
672
669
|
[key: string]: number;
|
|
@@ -761,41 +758,18 @@ export declare class NgtsEdges {
|
|
|
761
758
|
dispose: {};
|
|
762
759
|
}[T]) => void)) | undefined;
|
|
763
760
|
color?: ColorRepresentation;
|
|
761
|
+
alphaToCoverage?: boolean | undefined;
|
|
764
762
|
dashed?: boolean | undefined;
|
|
765
763
|
dashScale?: number | undefined;
|
|
766
764
|
dashSize?: number | undefined;
|
|
767
765
|
dashOffset?: number | undefined;
|
|
768
766
|
gapSize?: number | undefined;
|
|
769
|
-
opacity?: number | undefined;
|
|
770
|
-
isLineMaterial?: true | undefined;
|
|
771
767
|
linewidth?: number | undefined;
|
|
772
768
|
resolution?: import("three").Vector2 | undefined;
|
|
773
|
-
alphaToCoverage?: boolean | undefined;
|
|
774
|
-
worldUnits?: boolean | undefined;
|
|
775
|
-
isShaderMaterial?: true | undefined;
|
|
776
|
-
defines?: any;
|
|
777
|
-
uniforms?: {
|
|
778
|
-
[uniform: string]: import("three").IUniform<any>;
|
|
779
|
-
} | undefined;
|
|
780
|
-
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
781
|
-
vertexShader?: string | undefined;
|
|
782
|
-
fragmentShader?: string | undefined;
|
|
783
769
|
wireframe?: boolean | undefined;
|
|
784
|
-
|
|
785
|
-
fog?: boolean | undefined;
|
|
786
|
-
lights?: boolean | undefined;
|
|
787
|
-
clipping?: boolean | undefined;
|
|
788
|
-
extensions?: {
|
|
789
|
-
clipCullDistance: boolean;
|
|
790
|
-
multiDraw: boolean;
|
|
791
|
-
} | undefined;
|
|
792
|
-
defaultAttributeValues?: any;
|
|
793
|
-
index0AttributeName?: string | undefined;
|
|
794
|
-
uniformsNeedUpdate?: boolean | undefined;
|
|
795
|
-
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
796
|
-
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
797
|
-
isMaterial?: true | undefined;
|
|
770
|
+
worldUnits?: boolean | undefined;
|
|
798
771
|
alphaHash?: boolean | undefined;
|
|
772
|
+
alphaTest?: number | undefined;
|
|
799
773
|
blendAlpha?: number | undefined;
|
|
800
774
|
blendColor?: ColorRepresentation | undefined;
|
|
801
775
|
blendDst?: import("three").BlendingDstFactor | undefined;
|
|
@@ -809,17 +783,11 @@ export declare class NgtsEdges {
|
|
|
809
783
|
clippingPlanes?: import("three").Plane[] | undefined;
|
|
810
784
|
clipShadows?: boolean | undefined;
|
|
811
785
|
colorWrite?: boolean | undefined;
|
|
786
|
+
defines?: any;
|
|
812
787
|
depthFunc?: import("three").DepthModes | undefined;
|
|
813
788
|
depthTest?: boolean | undefined;
|
|
814
789
|
depthWrite?: boolean | undefined;
|
|
815
|
-
|
|
816
|
-
stencilFunc?: import("three").StencilFunc | undefined;
|
|
817
|
-
stencilRef?: number | undefined;
|
|
818
|
-
stencilWriteMask?: number | undefined;
|
|
819
|
-
stencilFuncMask?: number | undefined;
|
|
820
|
-
stencilFail?: import("three").StencilOp | undefined;
|
|
821
|
-
stencilZFail?: import("three").StencilOp | undefined;
|
|
822
|
-
stencilZPass?: import("three").StencilOp | undefined;
|
|
790
|
+
opacity?: number | undefined;
|
|
823
791
|
polygonOffset?: boolean | undefined;
|
|
824
792
|
polygonOffsetFactor?: number | undefined;
|
|
825
793
|
polygonOffsetUnits?: number | undefined;
|
|
@@ -831,13 +799,45 @@ export declare class NgtsEdges {
|
|
|
831
799
|
shadowSide?: 0 | 1 | 2 | undefined;
|
|
832
800
|
toneMapped?: boolean | undefined;
|
|
833
801
|
transparent?: boolean | undefined;
|
|
802
|
+
format?: import("three").PixelFormat | undefined;
|
|
803
|
+
stencilWrite?: boolean | undefined;
|
|
804
|
+
stencilFunc?: import("three").StencilFunc | undefined;
|
|
805
|
+
stencilRef?: number | undefined;
|
|
806
|
+
stencilWriteMask?: number | undefined;
|
|
807
|
+
stencilFuncMask?: number | undefined;
|
|
808
|
+
stencilFail?: import("three").StencilOp | undefined;
|
|
809
|
+
stencilZFail?: import("three").StencilOp | undefined;
|
|
810
|
+
stencilZPass?: import("three").StencilOp | undefined;
|
|
811
|
+
isLine2?: true | undefined;
|
|
812
|
+
isLineSegments2?: true | undefined;
|
|
813
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
814
|
+
isLineMaterial?: true | undefined;
|
|
815
|
+
isShaderMaterial?: true | undefined;
|
|
816
|
+
uniforms?: {
|
|
817
|
+
[uniform: string]: import("three").IUniform<any>;
|
|
818
|
+
} | undefined;
|
|
819
|
+
uniformsGroups?: import("three").UniformsGroup[] | undefined;
|
|
820
|
+
vertexShader?: string | undefined;
|
|
821
|
+
fragmentShader?: string | undefined;
|
|
822
|
+
wireframeLinewidth?: number | undefined;
|
|
823
|
+
fog?: boolean | undefined;
|
|
824
|
+
lights?: boolean | undefined;
|
|
825
|
+
clipping?: boolean | undefined;
|
|
826
|
+
extensions?: {
|
|
827
|
+
clipCullDistance: boolean;
|
|
828
|
+
multiDraw: boolean;
|
|
829
|
+
} | undefined;
|
|
830
|
+
defaultAttributeValues?: any;
|
|
831
|
+
index0AttributeName?: string | undefined;
|
|
832
|
+
uniformsNeedUpdate?: boolean | undefined;
|
|
833
|
+
glslVersion?: import("three").GLSLVersion | null | undefined;
|
|
834
|
+
setValues?: ((parameters: import("three").ShaderMaterialParameters) => void) | undefined;
|
|
835
|
+
isMaterial?: true | undefined;
|
|
834
836
|
version?: number | undefined;
|
|
835
|
-
alphaTest?: number | undefined;
|
|
836
837
|
onBeforeCompile?: ((parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
837
838
|
customProgramCacheKey?: (() => string) | undefined;
|
|
838
839
|
needsUpdate?: boolean | undefined;
|
|
839
840
|
onBuild?: ((object: import("three").Object3D, parameters: import("three").WebGLProgramParametersWithUniforms, renderer: import("three").WebGLRenderer) => void) | undefined;
|
|
840
|
-
format?: import("three").PixelFormat | undefined;
|
|
841
841
|
lineWidth?: number;
|
|
842
842
|
}>;
|
|
843
843
|
protected tmpPoints: number[];
|
|
@@ -13,7 +13,7 @@ export declare class NgtsGradientTexture {
|
|
|
13
13
|
stops: import("@angular/core").InputSignal<number[]>;
|
|
14
14
|
colors: import("@angular/core").InputSignal<ColorRepresentation[]>;
|
|
15
15
|
options: import("@angular/core").InputSignalWithTransform<NgtsGradientTextureOptions, "" | Partial<NgtsGradientTextureOptions>>;
|
|
16
|
-
parameters: import("@angular/core").Signal<Omit<NgtsGradientTextureOptions, "
|
|
16
|
+
parameters: import("@angular/core").Signal<Omit<NgtsGradientTextureOptions, "size" | "type" | "width" | "innerCircleRadius" | "outerCircleRadius">>;
|
|
17
17
|
private store;
|
|
18
18
|
gl: import("@angular/core").Signal<import("three").WebGLRenderer>;
|
|
19
19
|
private document;
|
|
@@ -8,10 +8,10 @@ export declare class NgtsGrid {
|
|
|
8
8
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
9
9
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
10
10
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
11
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
12
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
13
11
|
readonly isMesh?: true | undefined;
|
|
14
12
|
readonly type?: string | undefined;
|
|
13
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
14
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
15
15
|
morphTargetInfluences?: number[] | undefined;
|
|
16
16
|
morphTargetDictionary?: {
|
|
17
17
|
[key: string]: number;
|
|
@@ -111,10 +111,10 @@ export declare class NgtsGrid {
|
|
|
111
111
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
112
112
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
113
113
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
114
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
115
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
116
114
|
readonly isMesh?: true | undefined;
|
|
117
115
|
readonly type?: string | undefined;
|
|
116
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
117
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
118
118
|
morphTargetInfluences?: number[] | undefined;
|
|
119
119
|
morphTargetDictionary?: {
|
|
120
120
|
[key: string]: number;
|
|
@@ -215,10 +215,10 @@ export declare class NgtsGrid {
|
|
|
215
215
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
216
216
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
217
217
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
218
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
219
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
220
218
|
readonly isMesh?: true | undefined;
|
|
221
219
|
readonly type?: string | undefined;
|
|
220
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
221
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
222
222
|
morphTargetInfluences?: number[] | undefined;
|
|
223
223
|
morphTargetDictionary?: {
|
|
224
224
|
[key: string]: number;
|
|
@@ -16,9 +16,9 @@ export type NgtsLineOptions = Omit<LineMaterialParameters, 'vertexColors' | 'col
|
|
|
16
16
|
color?: ColorRepresentation;
|
|
17
17
|
};
|
|
18
18
|
export declare class NgtsLine {
|
|
19
|
-
points: import("@angular/core").InputSignal<(number | Vector3 | [number, number, number] |
|
|
19
|
+
points: import("@angular/core").InputSignal<(number | Vector3 | Vector2 | [number, number, number] | [number, number])[]>;
|
|
20
20
|
options: import("@angular/core").InputSignalWithTransform<NgtsLineOptions, "" | Partial<NgtsLineOptions>>;
|
|
21
|
-
parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "color" | "
|
|
21
|
+
parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "color" | "vertexColors" | "dashed" | "linewidth" | "segments" | "lineWidth">>;
|
|
22
22
|
line: import("@angular/core").Signal<ElementRef<Line2 | LineSegments2> | undefined>;
|
|
23
23
|
private store;
|
|
24
24
|
private size;
|
|
@@ -32,7 +32,7 @@ export declare class NgtsLine {
|
|
|
32
32
|
resolution: import("@angular/core").Signal<number[]>;
|
|
33
33
|
line2: import("@angular/core").Signal<LineSegments2>;
|
|
34
34
|
lineMaterial: import("@angular/core").Signal<LineMaterial>;
|
|
35
|
-
itemSize: import("@angular/core").Signal<
|
|
35
|
+
itemSize: import("@angular/core").Signal<4 | 3>;
|
|
36
36
|
lineGeometry: import("@angular/core").Signal<LineSegmentsGeometry>;
|
|
37
37
|
onGeometryAttached({ parent }: NgtAfterAttach<LineGeometry, Line2 | LineSegments2>): void;
|
|
38
38
|
constructor();
|
|
@@ -12,13 +12,13 @@ export declare class NgtsPrismGeometry {
|
|
|
12
12
|
depth: number;
|
|
13
13
|
/** Height */
|
|
14
14
|
height: number;
|
|
15
|
-
curveSegments?: number | undefined;
|
|
16
|
-
steps?: number | undefined;
|
|
17
15
|
bevelEnabled?: boolean | undefined;
|
|
18
|
-
bevelThickness?: number | undefined;
|
|
19
|
-
bevelSize?: number | undefined;
|
|
20
16
|
bevelOffset?: number | undefined;
|
|
17
|
+
bevelSize?: number | undefined;
|
|
18
|
+
bevelThickness?: number | undefined;
|
|
19
|
+
curveSegments?: number | undefined;
|
|
21
20
|
bevelSegments?: number | undefined;
|
|
21
|
+
steps?: number | undefined;
|
|
22
22
|
extrudePath?: import("three").Curve<import("three").Vector3> | undefined;
|
|
23
23
|
UVGenerator?: import("three").UVGenerator | undefined;
|
|
24
24
|
}>;
|
|
@@ -15,10 +15,10 @@ export declare class NgtsText3D {
|
|
|
15
15
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
16
16
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
17
17
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
18
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
19
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
20
18
|
readonly isMesh?: true | undefined;
|
|
21
19
|
readonly type?: string | undefined;
|
|
20
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
21
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
22
22
|
morphTargetInfluences?: number[] | undefined;
|
|
23
23
|
morphTargetDictionary?: {
|
|
24
24
|
[key: string]: number;
|
|
@@ -116,10 +116,10 @@ export declare class NgtsText3D {
|
|
|
116
116
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
117
117
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
118
118
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
119
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
120
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
121
119
|
readonly isMesh?: true | undefined;
|
|
122
120
|
readonly type?: string | undefined;
|
|
121
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
122
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
123
123
|
morphTargetInfluences?: number[] | undefined;
|
|
124
124
|
morphTargetDictionary?: {
|
|
125
125
|
[key: string]: number;
|
|
@@ -218,10 +218,10 @@ export declare class NgtsText3D {
|
|
|
218
218
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
219
219
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>, typeof Mesh>, ev: import("angular-three").NgtNodeEventMap<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtObject3DEventsMap[TEventKey]) => any) => void);
|
|
220
220
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
221
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
222
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
223
221
|
readonly isMesh?: true | undefined;
|
|
224
222
|
readonly type?: string | undefined;
|
|
223
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
224
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
225
225
|
morphTargetInfluences?: number[] | undefined;
|
|
226
226
|
morphTargetDictionary?: {
|
|
227
227
|
[key: string]: number;
|
|
@@ -314,22 +314,22 @@ export declare class NgtsText3D {
|
|
|
314
314
|
quaternion: import("angular-three").NgtQuaternion;
|
|
315
315
|
layers: import("angular-three").NgtLayers;
|
|
316
316
|
dispose: (() => void) | null;
|
|
317
|
-
}> & NgtsText3DOptions, "
|
|
317
|
+
}> & NgtsText3DOptions, "bevelEnabled" | "bevelOffset" | "bevelSize" | "bevelThickness" | "curveSegments" | "height" | "size" | "lineHeight" | "letterSpacing" | "bevelSegments" | "smooth">>;
|
|
318
318
|
mesh: import("@angular/core").Signal<ElementRef<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>> | undefined>;
|
|
319
319
|
loadedFont: import("@angular/core").Signal<import("three-stdlib").Font | null>;
|
|
320
320
|
private smooth;
|
|
321
321
|
private textOptions;
|
|
322
322
|
textArgs: import("@angular/core").Signal<(string | {
|
|
323
|
-
size?: number;
|
|
324
|
-
height?: number;
|
|
325
|
-
curveSegments?: number;
|
|
326
323
|
bevelEnabled?: boolean;
|
|
327
|
-
bevelThickness?: number;
|
|
328
|
-
bevelSize?: number;
|
|
329
324
|
bevelOffset?: number;
|
|
330
|
-
|
|
325
|
+
bevelSize?: number;
|
|
326
|
+
bevelThickness?: number;
|
|
327
|
+
curveSegments?: number;
|
|
328
|
+
height?: number;
|
|
329
|
+
size?: number;
|
|
331
330
|
lineHeight?: number;
|
|
332
331
|
letterSpacing?: number;
|
|
332
|
+
bevelSegments: number;
|
|
333
333
|
font: import("three-stdlib").Font;
|
|
334
334
|
})[] | null>;
|
|
335
335
|
constructor();
|
|
@@ -36,14 +36,14 @@ export interface NgtsTextOptions extends Partial<NgtMesh> {
|
|
|
36
36
|
export declare class NgtsText {
|
|
37
37
|
text: import("@angular/core").InputSignal<string>;
|
|
38
38
|
options: import("@angular/core").InputSignalWithTransform<NgtsTextOptions, "" | Partial<NgtsTextOptions>>;
|
|
39
|
-
parameters: import("@angular/core").Signal<Omit<NgtsTextOptions, "
|
|
39
|
+
parameters: import("@angular/core").Signal<Omit<NgtsTextOptions, "font" | "characters" | "fontSize" | "anchorX" | "anchorY" | "sdfGlyphSize">>;
|
|
40
40
|
synced: import("@angular/core").OutputEmitterRef<Text>;
|
|
41
41
|
private autoEffect;
|
|
42
42
|
private store;
|
|
43
43
|
private invalidate;
|
|
44
44
|
private characters;
|
|
45
45
|
font: import("@angular/core").Signal<string | undefined>;
|
|
46
|
-
anchorX: import("@angular/core").Signal<number | "
|
|
46
|
+
anchorX: import("@angular/core").Signal<number | "left" | "right" | "center">;
|
|
47
47
|
anchorY: import("@angular/core").Signal<number | "top" | "top-baseline" | "middle" | "bottom-baseline" | "bottom">;
|
|
48
48
|
sdfGlyphSize: import("@angular/core").Signal<number>;
|
|
49
49
|
fontSize: import("@angular/core").Signal<number>;
|