angular-three-soba 2.0.0-beta.305 → 2.0.0-beta.307
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abstractions/index.d.ts +1 -0
- package/abstractions/lib/billboard.d.ts +19 -0
- package/abstractions/lib/catmull-rom-line.d.ts +41 -41
- package/abstractions/lib/edges.d.ts +60 -60
- package/abstractions/lib/grid.d.ts +30 -30
- package/abstractions/lib/text-3d.d.ts +30 -30
- package/controls/lib/pivot-controls/axis-arrow.d.ts +1 -1
- package/controls/lib/pivot-controls/axis-rotator.d.ts +1 -1
- package/controls/lib/pivot-controls/pivot-controls.d.ts +1 -1
- package/controls/lib/pivot-controls/plane-slider.d.ts +1 -1
- package/controls/lib/pivot-controls/scaling-sphere.d.ts +1 -1
- package/esm2022/abstractions/index.mjs +2 -1
- package/esm2022/abstractions/lib/billboard.mjs +69 -0
- package/fesm2022/angular-three-soba-abstractions.mjs +68 -4
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/package.json +7 -7
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/center.d.ts +14 -14
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +7 -7
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +2 -2
- package/staging/lib/stage.d.ts +9 -9
package/abstractions/index.d.ts
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { NgtGroup } from 'angular-three';
|
|
3
|
+
import { Group } from 'three';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface NgtsBillboardOptions extends Partial<NgtGroup> {
|
|
6
|
+
follow?: boolean;
|
|
7
|
+
lockX?: boolean;
|
|
8
|
+
lockY?: boolean;
|
|
9
|
+
lockZ?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class NgtsBillboard {
|
|
12
|
+
options: import("@angular/core").InputSignalWithTransform<NgtsBillboardOptions, "" | Partial<NgtsBillboardOptions>>;
|
|
13
|
+
parameters: import("@angular/core").Signal<Omit<NgtsBillboardOptions, "follow" | "lockX" | "lockY" | "lockZ">>;
|
|
14
|
+
groupRef: import("@angular/core").Signal<ElementRef<Group<import("three").Object3DEventMap>>>;
|
|
15
|
+
innerRef: import("@angular/core").Signal<ElementRef<Group<import("three").Object3DEventMap>>>;
|
|
16
|
+
constructor();
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsBillboard, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsBillboard, "ngts-billboard", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
19
|
+
}
|
|
@@ -28,20 +28,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
28
28
|
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;
|
|
29
29
|
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);
|
|
30
30
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
31
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
32
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
33
|
-
readonly isLine2?: true | undefined;
|
|
34
|
-
readonly isLineSegments2?: true | undefined;
|
|
35
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
36
|
-
readonly isMesh?: true | undefined;
|
|
37
31
|
readonly type?: string | undefined;
|
|
38
|
-
morphTargetInfluences?: number[] | undefined;
|
|
39
|
-
morphTargetDictionary?: {
|
|
40
|
-
[key: string]: number;
|
|
41
|
-
} | undefined;
|
|
42
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
43
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
44
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
45
32
|
readonly isObject3D?: true | undefined;
|
|
46
33
|
readonly id?: number | undefined;
|
|
47
34
|
uuid?: string | undefined;
|
|
@@ -106,6 +93,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
106
93
|
updateMatrix?: (() => void) | undefined;
|
|
107
94
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
108
95
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
96
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
109
97
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
110
98
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
111
99
|
hasEventListener?: {
|
|
@@ -113,6 +101,18 @@ export declare class NgtsCatmullRomLine {
|
|
|
113
101
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
114
102
|
} | undefined;
|
|
115
103
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
104
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
105
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
106
|
+
readonly isLine2?: true | undefined;
|
|
107
|
+
readonly isLineSegments2?: true | undefined;
|
|
108
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
109
|
+
readonly isMesh?: true | undefined;
|
|
110
|
+
morphTargetInfluences?: number[] | undefined;
|
|
111
|
+
morphTargetDictionary?: {
|
|
112
|
+
[key: string]: number;
|
|
113
|
+
} | undefined;
|
|
114
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
115
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
116
116
|
position: import("angular-three").NgtVector3;
|
|
117
117
|
up: import("angular-three").NgtVector3;
|
|
118
118
|
scale: import("angular-three").NgtVector3;
|
|
@@ -128,13 +128,13 @@ export declare class NgtsCatmullRomLine {
|
|
|
128
128
|
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, [import("three-stdlib").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);
|
|
129
129
|
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
130
130
|
type?: string | undefined;
|
|
131
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
132
131
|
id?: number | undefined;
|
|
133
132
|
uuid?: string | undefined;
|
|
134
133
|
name?: string | undefined;
|
|
135
134
|
visible?: boolean | undefined;
|
|
136
135
|
userData?: Record<string, any> | undefined;
|
|
137
136
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
137
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
138
138
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
139
139
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
140
140
|
hasEventListener?: {
|
|
@@ -241,20 +241,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
241
241
|
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);
|
|
242
242
|
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;
|
|
243
243
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
244
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
245
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
246
|
-
readonly isLine2?: true | undefined;
|
|
247
|
-
readonly isLineSegments2?: true | undefined;
|
|
248
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
249
|
-
readonly isMesh?: true | undefined;
|
|
250
244
|
readonly type?: string | undefined;
|
|
251
|
-
morphTargetInfluences?: number[] | undefined;
|
|
252
|
-
morphTargetDictionary?: {
|
|
253
|
-
[key: string]: number;
|
|
254
|
-
} | undefined;
|
|
255
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
256
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
257
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
258
245
|
readonly isObject3D?: true | undefined;
|
|
259
246
|
readonly id?: number | undefined;
|
|
260
247
|
uuid?: string | undefined;
|
|
@@ -319,6 +306,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
319
306
|
updateMatrix?: (() => void) | undefined;
|
|
320
307
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
321
308
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
309
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
322
310
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
323
311
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
324
312
|
hasEventListener?: {
|
|
@@ -326,6 +314,18 @@ export declare class NgtsCatmullRomLine {
|
|
|
326
314
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
327
315
|
} | undefined;
|
|
328
316
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
317
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
318
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
319
|
+
readonly isLine2?: true | undefined;
|
|
320
|
+
readonly isLineSegments2?: true | undefined;
|
|
321
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
322
|
+
readonly isMesh?: true | undefined;
|
|
323
|
+
morphTargetInfluences?: number[] | undefined;
|
|
324
|
+
morphTargetDictionary?: {
|
|
325
|
+
[key: string]: number;
|
|
326
|
+
} | undefined;
|
|
327
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
328
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
329
329
|
position: import("angular-three").NgtVector3;
|
|
330
330
|
up: import("angular-three").NgtVector3;
|
|
331
331
|
scale: import("angular-three").NgtVector3;
|
|
@@ -341,13 +341,13 @@ export declare class NgtsCatmullRomLine {
|
|
|
341
341
|
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, [import("three-stdlib").LineMaterialParameters]>, ev: import("angular-three").NgtNodeEventMap<import("three-stdlib").LineMaterial>[TEventKey_1]) => any) => void) & any;
|
|
342
342
|
__ngt_args__: [import("three-stdlib").LineMaterialParameters];
|
|
343
343
|
type?: string | undefined;
|
|
344
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
345
344
|
id?: number | undefined;
|
|
346
345
|
uuid?: string | undefined;
|
|
347
346
|
name?: string | undefined;
|
|
348
347
|
visible?: boolean | undefined;
|
|
349
348
|
userData?: Record<string, any> | undefined;
|
|
350
349
|
onBeforeRender?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, geometry: import("three").BufferGeometry, object: import("three").Object3D, group: import("three").Group) => void) | undefined;
|
|
350
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
351
351
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
352
352
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
353
353
|
hasEventListener?: {
|
|
@@ -458,20 +458,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
458
458
|
layers?: import("angular-three").NgtLayers | undefined;
|
|
459
459
|
dispose?: (() => void) | null | undefined;
|
|
460
460
|
raycast?: ((raycaster: import("three").Raycaster, intersects: import("three").Intersection[]) => void) | null | undefined;
|
|
461
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
462
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
463
|
-
isLine2?: true | undefined;
|
|
464
|
-
isLineSegments2?: true | undefined;
|
|
465
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
466
|
-
isMesh?: true | undefined;
|
|
467
461
|
type?: string | undefined;
|
|
468
|
-
morphTargetInfluences?: number[] | undefined;
|
|
469
|
-
morphTargetDictionary?: {
|
|
470
|
-
[key: string]: number;
|
|
471
|
-
} | undefined;
|
|
472
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
473
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
474
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
475
462
|
isObject3D?: true | undefined;
|
|
476
463
|
id?: number | undefined;
|
|
477
464
|
uuid?: string | undefined;
|
|
@@ -536,6 +523,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
536
523
|
updateMatrix?: (() => void) | undefined;
|
|
537
524
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
538
525
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
526
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
539
527
|
clone?: (((recursive?: boolean) => import("three-stdlib").Line2) & (() => import("three-stdlib").LineMaterial)) | undefined;
|
|
540
528
|
copy?: (((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) & ((material: import("three").Material) => import("three-stdlib").LineMaterial)) | undefined;
|
|
541
529
|
hasEventListener?: ({
|
|
@@ -550,6 +538,18 @@ export declare class NgtsCatmullRomLine {
|
|
|
550
538
|
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> & {
|
|
551
539
|
dispose: {};
|
|
552
540
|
}[T]) => void)) | undefined;
|
|
541
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
542
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
543
|
+
isLine2?: true | undefined;
|
|
544
|
+
isLineSegments2?: true | undefined;
|
|
545
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
546
|
+
isMesh?: true | undefined;
|
|
547
|
+
morphTargetInfluences?: number[] | undefined;
|
|
548
|
+
morphTargetDictionary?: {
|
|
549
|
+
[key: string]: number;
|
|
550
|
+
} | undefined;
|
|
551
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
552
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
553
553
|
color?: import("three").ColorRepresentation | undefined;
|
|
554
554
|
dashed?: boolean | undefined;
|
|
555
555
|
dashScale?: number | undefined;
|
|
@@ -21,17 +21,7 @@ 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").NgtAllObject3DEventsMap>(type: TEventKey_1, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[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
|
-
readonly isMesh?: true | undefined;
|
|
27
24
|
readonly type?: string | undefined;
|
|
28
|
-
morphTargetInfluences?: number[] | undefined;
|
|
29
|
-
morphTargetDictionary?: {
|
|
30
|
-
[key: string]: number;
|
|
31
|
-
} | undefined;
|
|
32
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
33
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
34
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
35
25
|
readonly isObject3D?: true | undefined;
|
|
36
26
|
readonly id?: number | undefined;
|
|
37
27
|
uuid?: string | undefined;
|
|
@@ -96,6 +86,7 @@ export declare class NgtsEdges {
|
|
|
96
86
|
updateMatrix?: (() => void) | undefined;
|
|
97
87
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
98
88
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
89
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
99
90
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
100
91
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
101
92
|
hasEventListener?: {
|
|
@@ -103,6 +94,15 @@ export declare class NgtsEdges {
|
|
|
103
94
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
104
95
|
} | undefined;
|
|
105
96
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
97
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
98
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
99
|
+
readonly isMesh?: true | undefined;
|
|
100
|
+
morphTargetInfluences?: number[] | undefined;
|
|
101
|
+
morphTargetDictionary?: {
|
|
102
|
+
[key: string]: number;
|
|
103
|
+
} | undefined;
|
|
104
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
105
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
106
106
|
position: import("angular-three").NgtVector3;
|
|
107
107
|
up: import("angular-three").NgtVector3;
|
|
108
108
|
scale: import("angular-three").NgtVector3;
|
|
@@ -117,20 +117,7 @@ export declare class NgtsEdges {
|
|
|
117
117
|
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;
|
|
118
118
|
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);
|
|
119
119
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
120
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
121
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
122
|
-
readonly isLine2?: true | undefined;
|
|
123
|
-
readonly isLineSegments2?: true | undefined;
|
|
124
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
125
|
-
readonly isMesh?: true | undefined;
|
|
126
120
|
readonly type?: string | undefined;
|
|
127
|
-
morphTargetInfluences?: number[] | undefined;
|
|
128
|
-
morphTargetDictionary?: {
|
|
129
|
-
[key: string]: number;
|
|
130
|
-
} | undefined;
|
|
131
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
132
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
133
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
134
121
|
readonly isObject3D?: true | undefined;
|
|
135
122
|
readonly id?: number | undefined;
|
|
136
123
|
uuid?: string | undefined;
|
|
@@ -195,6 +182,7 @@ export declare class NgtsEdges {
|
|
|
195
182
|
updateMatrix?: (() => void) | undefined;
|
|
196
183
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
197
184
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
185
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
198
186
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
199
187
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
200
188
|
hasEventListener?: {
|
|
@@ -202,6 +190,18 @@ export declare class NgtsEdges {
|
|
|
202
190
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
203
191
|
} | undefined;
|
|
204
192
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
193
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
194
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
195
|
+
readonly isLine2?: true | undefined;
|
|
196
|
+
readonly isLineSegments2?: true | undefined;
|
|
197
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
198
|
+
readonly isMesh?: true | undefined;
|
|
199
|
+
morphTargetInfluences?: number[] | undefined;
|
|
200
|
+
morphTargetDictionary?: {
|
|
201
|
+
[key: string]: number;
|
|
202
|
+
} | undefined;
|
|
203
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
204
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
205
205
|
position: import("angular-three").NgtVector3;
|
|
206
206
|
up: import("angular-three").NgtVector3;
|
|
207
207
|
scale: import("angular-three").NgtVector3;
|
|
@@ -217,13 +217,13 @@ export declare class NgtsEdges {
|
|
|
217
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
218
|
__ngt_args__: [LineMaterialParameters];
|
|
219
219
|
type?: string | undefined;
|
|
220
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
221
220
|
id?: number | undefined;
|
|
222
221
|
uuid?: string | undefined;
|
|
223
222
|
name?: string | undefined;
|
|
224
223
|
visible?: boolean | undefined;
|
|
225
224
|
userData?: Record<string, any> | undefined;
|
|
226
225
|
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;
|
|
226
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
227
227
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
228
228
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
229
229
|
hasEventListener?: {
|
|
@@ -330,17 +330,7 @@ export declare class NgtsEdges {
|
|
|
330
330
|
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);
|
|
331
331
|
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;
|
|
332
332
|
__ngt_args__: [geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
333
|
-
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
334
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
335
|
-
readonly isMesh?: true | undefined;
|
|
336
333
|
readonly type?: string | undefined;
|
|
337
|
-
morphTargetInfluences?: number[] | undefined;
|
|
338
|
-
morphTargetDictionary?: {
|
|
339
|
-
[key: string]: number;
|
|
340
|
-
} | undefined;
|
|
341
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
342
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
343
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
344
334
|
readonly isObject3D?: true | undefined;
|
|
345
335
|
readonly id?: number | undefined;
|
|
346
336
|
uuid?: string | undefined;
|
|
@@ -405,6 +395,7 @@ export declare class NgtsEdges {
|
|
|
405
395
|
updateMatrix?: (() => void) | undefined;
|
|
406
396
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
407
397
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
398
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
408
399
|
clone?: ((recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
409
400
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
410
401
|
hasEventListener?: {
|
|
@@ -412,6 +403,15 @@ export declare class NgtsEdges {
|
|
|
412
403
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
413
404
|
} | undefined;
|
|
414
405
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
406
|
+
geometry?: BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
407
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
408
|
+
readonly isMesh?: true | undefined;
|
|
409
|
+
morphTargetInfluences?: number[] | undefined;
|
|
410
|
+
morphTargetDictionary?: {
|
|
411
|
+
[key: string]: number;
|
|
412
|
+
} | undefined;
|
|
413
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
414
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
415
415
|
position: import("angular-three").NgtVector3;
|
|
416
416
|
up: import("angular-three").NgtVector3;
|
|
417
417
|
scale: import("angular-three").NgtVector3;
|
|
@@ -426,20 +426,7 @@ export declare class NgtsEdges {
|
|
|
426
426
|
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);
|
|
427
427
|
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;
|
|
428
428
|
__ngt_args__: [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined];
|
|
429
|
-
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
430
|
-
material?: import("three-stdlib").LineMaterial | undefined;
|
|
431
|
-
readonly isLine2?: true | undefined;
|
|
432
|
-
readonly isLineSegments2?: true | undefined;
|
|
433
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
434
|
-
readonly isMesh?: true | undefined;
|
|
435
429
|
readonly type?: string | undefined;
|
|
436
|
-
morphTargetInfluences?: number[] | undefined;
|
|
437
|
-
morphTargetDictionary?: {
|
|
438
|
-
[key: string]: number;
|
|
439
|
-
} | undefined;
|
|
440
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
441
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
442
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
443
430
|
readonly isObject3D?: true | undefined;
|
|
444
431
|
readonly id?: number | undefined;
|
|
445
432
|
uuid?: string | undefined;
|
|
@@ -504,6 +491,7 @@ export declare class NgtsEdges {
|
|
|
504
491
|
updateMatrix?: (() => void) | undefined;
|
|
505
492
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
506
493
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
494
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
507
495
|
clone?: ((recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
508
496
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => import("three-stdlib").Line2) | undefined;
|
|
509
497
|
hasEventListener?: {
|
|
@@ -511,6 +499,18 @@ export declare class NgtsEdges {
|
|
|
511
499
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, import("three-stdlib").Line2>): boolean;
|
|
512
500
|
} | undefined;
|
|
513
501
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
502
|
+
geometry?: import("three-stdlib").LineGeometry | undefined;
|
|
503
|
+
material?: import("three-stdlib").LineMaterial | undefined;
|
|
504
|
+
readonly isLine2?: true | undefined;
|
|
505
|
+
readonly isLineSegments2?: true | undefined;
|
|
506
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
507
|
+
readonly isMesh?: true | undefined;
|
|
508
|
+
morphTargetInfluences?: number[] | undefined;
|
|
509
|
+
morphTargetDictionary?: {
|
|
510
|
+
[key: string]: number;
|
|
511
|
+
} | undefined;
|
|
512
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
513
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
514
514
|
position: import("angular-three").NgtVector3;
|
|
515
515
|
up: import("angular-three").NgtVector3;
|
|
516
516
|
scale: import("angular-three").NgtVector3;
|
|
@@ -526,13 +526,13 @@ export declare class NgtsEdges {
|
|
|
526
526
|
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;
|
|
527
527
|
__ngt_args__: [LineMaterialParameters];
|
|
528
528
|
type?: string | undefined;
|
|
529
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
530
529
|
id?: number | undefined;
|
|
531
530
|
uuid?: string | undefined;
|
|
532
531
|
name?: string | undefined;
|
|
533
532
|
visible?: boolean | undefined;
|
|
534
533
|
userData?: Record<string, any> | undefined;
|
|
535
534
|
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;
|
|
535
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON) | undefined;
|
|
536
536
|
clone?: (() => import("three-stdlib").LineMaterial) | undefined;
|
|
537
537
|
copy?: ((material: import("three").Material) => import("three-stdlib").LineMaterial) | undefined;
|
|
538
538
|
hasEventListener?: {
|
|
@@ -643,19 +643,7 @@ export declare class NgtsEdges {
|
|
|
643
643
|
quaternion?: import("angular-three").NgtQuaternion | undefined;
|
|
644
644
|
layers?: import("angular-three").NgtLayers | undefined;
|
|
645
645
|
dispose?: (() => void) | null | undefined;
|
|
646
|
-
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
647
|
-
isLine2?: true | undefined;
|
|
648
|
-
isLineSegments2?: true | undefined;
|
|
649
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
650
|
-
isMesh?: true | undefined;
|
|
651
646
|
type?: string | undefined;
|
|
652
|
-
morphTargetInfluences?: number[] | undefined;
|
|
653
|
-
morphTargetDictionary?: {
|
|
654
|
-
[key: string]: number;
|
|
655
|
-
} | undefined;
|
|
656
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
657
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
658
|
-
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
659
647
|
isObject3D?: true | undefined;
|
|
660
648
|
id?: number | undefined;
|
|
661
649
|
uuid?: string | undefined;
|
|
@@ -720,6 +708,7 @@ export declare class NgtsEdges {
|
|
|
720
708
|
updateMatrix?: (() => void) | undefined;
|
|
721
709
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
722
710
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
711
|
+
toJSON?: (((meta?: import("three").JSONMeta) => import("three").MeshJSON) & ((meta?: import("three").JSONMeta) => import("three").ShaderMaterialJSON)) | undefined;
|
|
723
712
|
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;
|
|
724
713
|
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;
|
|
725
714
|
hasEventListener?: ({
|
|
@@ -737,6 +726,17 @@ export declare class NgtsEdges {
|
|
|
737
726
|
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> & {
|
|
738
727
|
dispose: {};
|
|
739
728
|
}[T]) => void)) | undefined;
|
|
729
|
+
material?: ((import("three").Material | import("three").Material[]) & import("three-stdlib").LineMaterial) | undefined;
|
|
730
|
+
isLine2?: true | undefined;
|
|
731
|
+
isLineSegments2?: true | undefined;
|
|
732
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | undefined;
|
|
733
|
+
isMesh?: true | undefined;
|
|
734
|
+
morphTargetInfluences?: number[] | undefined;
|
|
735
|
+
morphTargetDictionary?: {
|
|
736
|
+
[key: string]: number;
|
|
737
|
+
} | undefined;
|
|
738
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
739
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
740
740
|
color?: ColorRepresentation | undefined;
|
|
741
741
|
dashed?: boolean | undefined;
|
|
742
742
|
dashScale?: number | undefined;
|
|
@@ -8,17 +8,7 @@ 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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[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
|
-
readonly isMesh?: true | undefined;
|
|
14
11
|
readonly type?: string | undefined;
|
|
15
|
-
morphTargetInfluences?: number[] | undefined;
|
|
16
|
-
morphTargetDictionary?: {
|
|
17
|
-
[key: string]: number;
|
|
18
|
-
} | undefined;
|
|
19
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
20
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
21
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
22
12
|
readonly isObject3D?: true | undefined;
|
|
23
13
|
readonly id?: number | undefined;
|
|
24
14
|
uuid?: string | undefined;
|
|
@@ -83,6 +73,7 @@ export declare class NgtsGrid {
|
|
|
83
73
|
updateMatrix?: (() => void) | undefined;
|
|
84
74
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
85
75
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
76
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
86
77
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
87
78
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
88
79
|
hasEventListener?: {
|
|
@@ -90,6 +81,15 @@ export declare class NgtsGrid {
|
|
|
90
81
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
91
82
|
} | undefined;
|
|
92
83
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
84
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
85
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
86
|
+
readonly isMesh?: true | undefined;
|
|
87
|
+
morphTargetInfluences?: number[] | undefined;
|
|
88
|
+
morphTargetDictionary?: {
|
|
89
|
+
[key: string]: number;
|
|
90
|
+
} | undefined;
|
|
91
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
92
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
93
93
|
position: import("angular-three").NgtVector3;
|
|
94
94
|
up: import("angular-three").NgtVector3;
|
|
95
95
|
scale: import("angular-three").NgtVector3;
|
|
@@ -106,17 +106,7 @@ export declare class NgtsGrid {
|
|
|
106
106
|
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
107
107
|
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
108
108
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
109
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
110
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
111
|
-
readonly isMesh?: true | undefined;
|
|
112
109
|
readonly type?: string | undefined;
|
|
113
|
-
morphTargetInfluences?: number[] | undefined;
|
|
114
|
-
morphTargetDictionary?: {
|
|
115
|
-
[key: string]: number;
|
|
116
|
-
} | undefined;
|
|
117
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
118
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
119
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
120
110
|
readonly isObject3D?: true | undefined;
|
|
121
111
|
readonly id?: number | undefined;
|
|
122
112
|
uuid?: string | undefined;
|
|
@@ -181,6 +171,7 @@ export declare class NgtsGrid {
|
|
|
181
171
|
updateMatrix?: (() => void) | undefined;
|
|
182
172
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
183
173
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
174
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
184
175
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
185
176
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
186
177
|
hasEventListener?: {
|
|
@@ -188,6 +179,15 @@ export declare class NgtsGrid {
|
|
|
188
179
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
189
180
|
} | undefined;
|
|
190
181
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
182
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
183
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
184
|
+
readonly isMesh?: true | undefined;
|
|
185
|
+
morphTargetInfluences?: number[] | undefined;
|
|
186
|
+
morphTargetDictionary?: {
|
|
187
|
+
[key: string]: number;
|
|
188
|
+
} | undefined;
|
|
189
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
190
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
191
191
|
position: import("angular-three").NgtVector3;
|
|
192
192
|
up: import("angular-three").NgtVector3;
|
|
193
193
|
scale: import("angular-three").NgtVector3;
|
|
@@ -205,17 +205,7 @@ export declare class NgtsGrid {
|
|
|
205
205
|
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
206
206
|
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
207
207
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
208
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
209
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
210
|
-
readonly isMesh?: true | undefined;
|
|
211
208
|
readonly type?: string | undefined;
|
|
212
|
-
morphTargetInfluences?: number[] | undefined;
|
|
213
|
-
morphTargetDictionary?: {
|
|
214
|
-
[key: string]: number;
|
|
215
|
-
} | undefined;
|
|
216
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
217
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
218
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
219
209
|
readonly isObject3D?: true | undefined;
|
|
220
210
|
readonly id?: number | undefined;
|
|
221
211
|
uuid?: string | undefined;
|
|
@@ -280,6 +270,7 @@ export declare class NgtsGrid {
|
|
|
280
270
|
updateMatrix?: (() => void) | undefined;
|
|
281
271
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
282
272
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
273
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
283
274
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
284
275
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
285
276
|
hasEventListener?: {
|
|
@@ -287,6 +278,15 @@ export declare class NgtsGrid {
|
|
|
287
278
|
<T extends string>(type: T, listener: import("three").EventListener<{}, T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>): boolean;
|
|
288
279
|
} | undefined;
|
|
289
280
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
281
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
282
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
283
|
+
readonly isMesh?: true | undefined;
|
|
284
|
+
morphTargetInfluences?: number[] | undefined;
|
|
285
|
+
morphTargetDictionary?: {
|
|
286
|
+
[key: string]: number;
|
|
287
|
+
} | undefined;
|
|
288
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
289
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
290
290
|
position: import("angular-three").NgtVector3;
|
|
291
291
|
up: import("angular-three").NgtVector3;
|
|
292
292
|
scale: import("angular-three").NgtVector3;
|