angular-three-soba 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abstractions/lib/catmull-rom-line.d.ts +218 -218
- package/abstractions/lib/edges.d.ts +245 -245
- package/abstractions/lib/grid.d.ts +42 -42
- package/abstractions/lib/line.d.ts +3 -3
- package/abstractions/lib/prism-geometry.d.ts +2 -2
- package/abstractions/lib/quadratic-bezier-line.d.ts +1 -1
- package/abstractions/lib/rounded-box.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +44 -44
- package/controls/lib/camera-controls.d.ts +1 -1
- package/controls/lib/orbit-controls.d.ts +1 -1
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-gizmos.mjs +3 -14
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -1
- package/materials/lib/custom-shader-material.d.ts +2 -2
- package/materials/lib/mesh-portal-material.d.ts +25 -25
- package/materials/lib/mesh-refraction-material.d.ts +2 -2
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/computed-attribute.d.ts +4 -4
- package/misc/lib/decal.d.ts +1 -1
- package/misc/lib/html/html.d.ts +1 -1
- package/misc/lib/sampler.d.ts +1 -1
- package/package.json +8 -8
- package/performances/lib/instances/instances.d.ts +1 -1
- package/performances/lib/points/points.d.ts +1 -1
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/center.d.ts +2 -2
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/mask.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +1 -1
- package/staging/lib/stage.d.ts +5 -5
|
@@ -4,15 +4,27 @@ import { Mesh, PlaneGeometry, Vector3 } from 'three';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NgtsGrid {
|
|
6
6
|
options: import("@angular/core").InputSignalWithTransform<Partial<{
|
|
7
|
+
name?: string | undefined;
|
|
8
|
+
visible?: boolean | undefined;
|
|
9
|
+
userData?: Record<string, any> | undefined;
|
|
7
10
|
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);
|
|
8
11
|
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);
|
|
9
12
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
10
13
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
14
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
15
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
16
|
+
readonly isMesh?: true | undefined;
|
|
17
|
+
readonly type?: string | undefined;
|
|
18
|
+
morphTargetInfluences?: number[] | undefined;
|
|
19
|
+
morphTargetDictionary?: {
|
|
20
|
+
[key: string]: number;
|
|
21
|
+
} | undefined;
|
|
22
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
23
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
24
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
11
25
|
readonly isObject3D?: true | undefined;
|
|
12
26
|
readonly id?: number | undefined;
|
|
13
27
|
uuid?: string | undefined;
|
|
14
|
-
name?: string | undefined;
|
|
15
|
-
readonly type?: string | undefined;
|
|
16
28
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
17
29
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
18
30
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -21,13 +33,11 @@ export declare class NgtsGrid {
|
|
|
21
33
|
matrixAutoUpdate?: boolean | undefined;
|
|
22
34
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
23
35
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
24
|
-
visible?: boolean | undefined;
|
|
25
36
|
castShadow?: boolean | undefined;
|
|
26
37
|
receiveShadow?: boolean | undefined;
|
|
27
38
|
frustumCulled?: boolean | undefined;
|
|
28
39
|
renderOrder?: number | undefined;
|
|
29
40
|
animations?: import("three").AnimationClip[] | undefined;
|
|
30
|
-
userData?: Record<string, any> | undefined;
|
|
31
41
|
customDepthMaterial?: import("three").Material | undefined;
|
|
32
42
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
33
43
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -73,20 +83,10 @@ export declare class NgtsGrid {
|
|
|
73
83
|
updateMatrix?: (() => void) | undefined;
|
|
74
84
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
75
85
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
76
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
77
86
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
78
87
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
79
88
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
80
89
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
81
|
-
readonly isMesh?: true | undefined;
|
|
82
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
83
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
84
|
-
morphTargetInfluences?: number[] | undefined;
|
|
85
|
-
morphTargetDictionary?: {
|
|
86
|
-
[key: string]: number;
|
|
87
|
-
} | undefined;
|
|
88
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
89
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
90
90
|
position: import("angular-three").NgtVector3;
|
|
91
91
|
up: import("angular-three").NgtVector3;
|
|
92
92
|
scale: import("angular-three").NgtVector3;
|
|
@@ -99,15 +99,27 @@ export declare class NgtsGrid {
|
|
|
99
99
|
}> & GridMaterialOptions & {
|
|
100
100
|
planeArgs: ConstructorParameters<typeof PlaneGeometry>;
|
|
101
101
|
}, "" | Partial<Partial<{
|
|
102
|
+
name?: string | undefined;
|
|
103
|
+
visible?: boolean | undefined;
|
|
104
|
+
userData?: Record<string, any> | undefined;
|
|
102
105
|
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);
|
|
103
106
|
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);
|
|
104
107
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
105
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
|
+
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;
|
|
106
120
|
readonly isObject3D?: true | undefined;
|
|
107
121
|
readonly id?: number | undefined;
|
|
108
122
|
uuid?: string | undefined;
|
|
109
|
-
name?: string | undefined;
|
|
110
|
-
readonly type?: string | undefined;
|
|
111
123
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
112
124
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
113
125
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -116,13 +128,11 @@ export declare class NgtsGrid {
|
|
|
116
128
|
matrixAutoUpdate?: boolean | undefined;
|
|
117
129
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
118
130
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
119
|
-
visible?: boolean | undefined;
|
|
120
131
|
castShadow?: boolean | undefined;
|
|
121
132
|
receiveShadow?: boolean | undefined;
|
|
122
133
|
frustumCulled?: boolean | undefined;
|
|
123
134
|
renderOrder?: number | undefined;
|
|
124
135
|
animations?: import("three").AnimationClip[] | undefined;
|
|
125
|
-
userData?: Record<string, any> | undefined;
|
|
126
136
|
customDepthMaterial?: import("three").Material | undefined;
|
|
127
137
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
128
138
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -168,20 +178,10 @@ export declare class NgtsGrid {
|
|
|
168
178
|
updateMatrix?: (() => void) | undefined;
|
|
169
179
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
170
180
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
171
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
172
181
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
173
182
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
174
183
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
175
184
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
176
|
-
readonly isMesh?: true | undefined;
|
|
177
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
178
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
179
|
-
morphTargetInfluences?: number[] | undefined;
|
|
180
|
-
morphTargetDictionary?: {
|
|
181
|
-
[key: string]: number;
|
|
182
|
-
} | undefined;
|
|
183
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
184
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
185
185
|
position: import("angular-three").NgtVector3;
|
|
186
186
|
up: import("angular-three").NgtVector3;
|
|
187
187
|
scale: import("angular-three").NgtVector3;
|
|
@@ -195,15 +195,27 @@ export declare class NgtsGrid {
|
|
|
195
195
|
planeArgs: ConstructorParameters<typeof PlaneGeometry>;
|
|
196
196
|
}>>;
|
|
197
197
|
parameters: import("@angular/core").Signal<Omit<Partial<{
|
|
198
|
+
name?: string | undefined;
|
|
199
|
+
visible?: boolean | undefined;
|
|
200
|
+
userData?: Record<string, any> | undefined;
|
|
198
201
|
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);
|
|
199
202
|
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);
|
|
200
203
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
201
204
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
205
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
206
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
207
|
+
readonly isMesh?: true | undefined;
|
|
208
|
+
readonly type?: string | undefined;
|
|
209
|
+
morphTargetInfluences?: number[] | undefined;
|
|
210
|
+
morphTargetDictionary?: {
|
|
211
|
+
[key: string]: number;
|
|
212
|
+
} | undefined;
|
|
213
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
214
|
+
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
215
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
202
216
|
readonly isObject3D?: true | undefined;
|
|
203
217
|
readonly id?: number | undefined;
|
|
204
218
|
uuid?: string | undefined;
|
|
205
|
-
name?: string | undefined;
|
|
206
|
-
readonly type?: string | undefined;
|
|
207
219
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
208
220
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
209
221
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -212,13 +224,11 @@ export declare class NgtsGrid {
|
|
|
212
224
|
matrixAutoUpdate?: boolean | undefined;
|
|
213
225
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
214
226
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
215
|
-
visible?: boolean | undefined;
|
|
216
227
|
castShadow?: boolean | undefined;
|
|
217
228
|
receiveShadow?: boolean | undefined;
|
|
218
229
|
frustumCulled?: boolean | undefined;
|
|
219
230
|
renderOrder?: number | undefined;
|
|
220
231
|
animations?: import("three").AnimationClip[] | undefined;
|
|
221
|
-
userData?: Record<string, any> | undefined;
|
|
222
232
|
customDepthMaterial?: import("three").Material | undefined;
|
|
223
233
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
224
234
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -264,20 +274,10 @@ export declare class NgtsGrid {
|
|
|
264
274
|
updateMatrix?: (() => void) | undefined;
|
|
265
275
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
266
276
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
267
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
268
277
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
269
278
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
270
279
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
271
280
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
272
|
-
readonly isMesh?: true | undefined;
|
|
273
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
274
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
275
|
-
morphTargetInfluences?: number[] | undefined;
|
|
276
|
-
morphTargetDictionary?: {
|
|
277
|
-
[key: string]: number;
|
|
278
|
-
} | undefined;
|
|
279
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
280
|
-
getVertexPosition?: ((index: number, target: Vector3) => Vector3) | undefined;
|
|
281
281
|
position: import("angular-three").NgtVector3;
|
|
282
282
|
up: import("angular-three").NgtVector3;
|
|
283
283
|
scale: import("angular-three").NgtVector3;
|
|
@@ -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 |
|
|
19
|
+
points: import("@angular/core").InputSignal<(number | Vector3 | [number, number, number] | Vector2 | [number, number])[]>;
|
|
20
20
|
options: import("@angular/core").InputSignalWithTransform<NgtsLineOptions, "" | Partial<NgtsLineOptions>>;
|
|
21
|
-
parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "
|
|
21
|
+
parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "vertexColors" | "color" | "dashed" | "linewidth" | "segments" | "lineWidth">>;
|
|
22
22
|
lineRef: import("@angular/core").Signal<ElementRef<Line2 | LineSegments2> | undefined>;
|
|
23
23
|
private store;
|
|
24
24
|
private size;
|
|
@@ -33,7 +33,7 @@ export declare class NgtsLine {
|
|
|
33
33
|
line2: import("@angular/core").Signal<LineSegments2>;
|
|
34
34
|
lineMaterial: LineMaterial;
|
|
35
35
|
protected actualLineWidth: import("@angular/core").Signal<number>;
|
|
36
|
-
protected itemSize: import("@angular/core").Signal<
|
|
36
|
+
protected itemSize: import("@angular/core").Signal<3 | 4>;
|
|
37
37
|
lineGeometry: import("@angular/core").Signal<LineSegmentsGeometry>;
|
|
38
38
|
onGeometryAttached({ parent }: NgtAfterAttach<LineGeometry, Line2 | LineSegments2>): void;
|
|
39
39
|
constructor();
|
|
@@ -14,13 +14,13 @@ export declare class NgtsPrismGeometry {
|
|
|
14
14
|
depth: number;
|
|
15
15
|
/** Height */
|
|
16
16
|
height: number;
|
|
17
|
-
bevelSegments?: number | undefined;
|
|
18
|
-
steps?: number | undefined;
|
|
19
17
|
curveSegments?: number | undefined;
|
|
18
|
+
steps?: number | undefined;
|
|
20
19
|
bevelEnabled?: boolean | undefined;
|
|
21
20
|
bevelThickness?: number | undefined;
|
|
22
21
|
bevelSize?: number | undefined;
|
|
23
22
|
bevelOffset?: number | undefined;
|
|
23
|
+
bevelSegments?: number | undefined;
|
|
24
24
|
extrudePath?: import("three").Curve<import("three").Vector3> | undefined;
|
|
25
25
|
UVGenerator?: import("three").UVGenerator | undefined;
|
|
26
26
|
}>;
|
|
@@ -14,7 +14,7 @@ export declare class NgtsQuadraticBezierLine {
|
|
|
14
14
|
line: import("@angular/core").Signal<NgtsLine>;
|
|
15
15
|
points: import("@angular/core").Signal<Vector3[]>;
|
|
16
16
|
private curve;
|
|
17
|
-
setPoints(start: Vector3 | [number, number, number], end: Vector3 | [number, number, number], mid
|
|
17
|
+
setPoints(start: Vector3 | [number, number, number], end: Vector3 | [number, number, number], mid?: Vector3 | [number, number, number]): void;
|
|
18
18
|
private getPoints;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsQuadraticBezierLine, never>;
|
|
20
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsQuadraticBezierLine, "ngts-quadratic-bezier-line", never, { "start": { "alias": "start"; "required": false; "isSignal": true; }; "end": { "alias": "end"; "required": false; "isSignal": true; }; "mid": { "alias": "mid"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -15,7 +15,7 @@ export interface NgtsRoundedBoxOptions extends Partial<NgtMesh> {
|
|
|
15
15
|
}
|
|
16
16
|
export declare class NgtsRoundedBox {
|
|
17
17
|
options: import("@angular/core").InputSignalWithTransform<NgtsRoundedBoxOptions, "" | Partial<NgtsRoundedBoxOptions>>;
|
|
18
|
-
parameters: import("@angular/core").Signal<Omit<NgtsRoundedBoxOptions, "width" | "height" | "depth" | "
|
|
18
|
+
parameters: import("@angular/core").Signal<Omit<NgtsRoundedBoxOptions, "width" | "height" | "depth" | "steps" | "bevelSegments" | "radius" | "smoothness" | "creaseAngle">>;
|
|
19
19
|
private width;
|
|
20
20
|
private height;
|
|
21
21
|
private depth;
|
|
@@ -12,15 +12,27 @@ export declare class NgtsText3D {
|
|
|
12
12
|
font: import("@angular/core").InputSignal<NgtsFontInput>;
|
|
13
13
|
text: import("@angular/core").InputSignal<string>;
|
|
14
14
|
options: import("@angular/core").InputSignalWithTransform<Partial<{
|
|
15
|
+
name?: string | undefined;
|
|
16
|
+
visible?: boolean | undefined;
|
|
17
|
+
userData?: Record<string, any> | undefined;
|
|
15
18
|
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);
|
|
16
19
|
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);
|
|
17
20
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
18
21
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
22
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
23
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
24
|
+
readonly isMesh?: true | undefined;
|
|
25
|
+
readonly type?: string | undefined;
|
|
26
|
+
morphTargetInfluences?: number[] | undefined;
|
|
27
|
+
morphTargetDictionary?: {
|
|
28
|
+
[key: string]: number;
|
|
29
|
+
} | undefined;
|
|
30
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
31
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
32
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
19
33
|
readonly isObject3D?: true | undefined;
|
|
20
34
|
readonly id?: number | undefined;
|
|
21
35
|
uuid?: string | undefined;
|
|
22
|
-
name?: string | undefined;
|
|
23
|
-
readonly type?: string | undefined;
|
|
24
36
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
25
37
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
26
38
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -29,13 +41,11 @@ export declare class NgtsText3D {
|
|
|
29
41
|
matrixAutoUpdate?: boolean | undefined;
|
|
30
42
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
31
43
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
32
|
-
visible?: boolean | undefined;
|
|
33
44
|
castShadow?: boolean | undefined;
|
|
34
45
|
receiveShadow?: boolean | undefined;
|
|
35
46
|
frustumCulled?: boolean | undefined;
|
|
36
47
|
renderOrder?: number | undefined;
|
|
37
48
|
animations?: import("three").AnimationClip[] | undefined;
|
|
38
|
-
userData?: Record<string, any> | undefined;
|
|
39
49
|
customDepthMaterial?: import("three").Material | undefined;
|
|
40
50
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
41
51
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -81,20 +91,10 @@ export declare class NgtsText3D {
|
|
|
81
91
|
updateMatrix?: (() => void) | undefined;
|
|
82
92
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
83
93
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
84
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
85
94
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
86
95
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
87
96
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
88
97
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
89
|
-
readonly isMesh?: true | undefined;
|
|
90
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
91
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
92
|
-
morphTargetInfluences?: number[] | undefined;
|
|
93
|
-
morphTargetDictionary?: {
|
|
94
|
-
[key: string]: number;
|
|
95
|
-
} | undefined;
|
|
96
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
97
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
98
98
|
position: import("angular-three").NgtVector3;
|
|
99
99
|
up: import("angular-three").NgtVector3;
|
|
100
100
|
scale: import("angular-three").NgtVector3;
|
|
@@ -105,15 +105,27 @@ export declare class NgtsText3D {
|
|
|
105
105
|
dispose: (() => void) | null;
|
|
106
106
|
raycast: import("three").Object3D["raycast"] | null;
|
|
107
107
|
}> & NgtsText3DOptions, "" | Partial<Partial<{
|
|
108
|
+
name?: string | undefined;
|
|
109
|
+
visible?: boolean | undefined;
|
|
110
|
+
userData?: Record<string, any> | undefined;
|
|
108
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
109
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").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
110
113
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
111
114
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
115
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
116
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
117
|
+
readonly isMesh?: true | undefined;
|
|
118
|
+
readonly type?: string | undefined;
|
|
119
|
+
morphTargetInfluences?: number[] | undefined;
|
|
120
|
+
morphTargetDictionary?: {
|
|
121
|
+
[key: string]: number;
|
|
122
|
+
} | undefined;
|
|
123
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
124
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
125
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
112
126
|
readonly isObject3D?: true | undefined;
|
|
113
127
|
readonly id?: number | undefined;
|
|
114
128
|
uuid?: string | undefined;
|
|
115
|
-
name?: string | undefined;
|
|
116
|
-
readonly type?: string | undefined;
|
|
117
129
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
118
130
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
119
131
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -122,13 +134,11 @@ export declare class NgtsText3D {
|
|
|
122
134
|
matrixAutoUpdate?: boolean | undefined;
|
|
123
135
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
124
136
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
125
|
-
visible?: boolean | undefined;
|
|
126
137
|
castShadow?: boolean | undefined;
|
|
127
138
|
receiveShadow?: boolean | undefined;
|
|
128
139
|
frustumCulled?: boolean | undefined;
|
|
129
140
|
renderOrder?: number | undefined;
|
|
130
141
|
animations?: import("three").AnimationClip[] | undefined;
|
|
131
|
-
userData?: Record<string, any> | undefined;
|
|
132
142
|
customDepthMaterial?: import("three").Material | undefined;
|
|
133
143
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
134
144
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -174,20 +184,10 @@ export declare class NgtsText3D {
|
|
|
174
184
|
updateMatrix?: (() => void) | undefined;
|
|
175
185
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
176
186
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
177
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
178
187
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
179
188
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
180
189
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
181
190
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
182
|
-
readonly isMesh?: true | undefined;
|
|
183
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
184
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
185
|
-
morphTargetInfluences?: number[] | undefined;
|
|
186
|
-
morphTargetDictionary?: {
|
|
187
|
-
[key: string]: number;
|
|
188
|
-
} | undefined;
|
|
189
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
190
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
191
191
|
position: import("angular-three").NgtVector3;
|
|
192
192
|
up: import("angular-three").NgtVector3;
|
|
193
193
|
scale: import("angular-three").NgtVector3;
|
|
@@ -199,15 +199,27 @@ export declare class NgtsText3D {
|
|
|
199
199
|
raycast: import("three").Object3D["raycast"] | null;
|
|
200
200
|
}> & NgtsText3DOptions>>;
|
|
201
201
|
protected parameters: import("@angular/core").Signal<Omit<Partial<{
|
|
202
|
+
name?: string | undefined;
|
|
203
|
+
visible?: boolean | undefined;
|
|
204
|
+
userData?: Record<string, any> | undefined;
|
|
202
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);
|
|
203
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);
|
|
204
207
|
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
205
208
|
__ngt_args__: [geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined, material?: import("three").Material | import("three").Material[] | undefined];
|
|
209
|
+
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
210
|
+
material?: import("three").Material | import("three").Material[] | undefined;
|
|
211
|
+
readonly isMesh?: true | undefined;
|
|
212
|
+
readonly type?: string | undefined;
|
|
213
|
+
morphTargetInfluences?: number[] | undefined;
|
|
214
|
+
morphTargetDictionary?: {
|
|
215
|
+
[key: string]: number;
|
|
216
|
+
} | undefined;
|
|
217
|
+
updateMorphTargets?: (() => void) | undefined;
|
|
218
|
+
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
219
|
+
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
206
220
|
readonly isObject3D?: true | undefined;
|
|
207
221
|
readonly id?: number | undefined;
|
|
208
222
|
uuid?: string | undefined;
|
|
209
|
-
name?: string | undefined;
|
|
210
|
-
readonly type?: string | undefined;
|
|
211
223
|
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
212
224
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
213
225
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
@@ -216,13 +228,11 @@ export declare class NgtsText3D {
|
|
|
216
228
|
matrixAutoUpdate?: boolean | undefined;
|
|
217
229
|
matrixWorldAutoUpdate?: boolean | undefined;
|
|
218
230
|
matrixWorldNeedsUpdate?: boolean | undefined;
|
|
219
|
-
visible?: boolean | undefined;
|
|
220
231
|
castShadow?: boolean | undefined;
|
|
221
232
|
receiveShadow?: boolean | undefined;
|
|
222
233
|
frustumCulled?: boolean | undefined;
|
|
223
234
|
renderOrder?: number | undefined;
|
|
224
235
|
animations?: import("three").AnimationClip[] | undefined;
|
|
225
|
-
userData?: Record<string, any> | undefined;
|
|
226
236
|
customDepthMaterial?: import("three").Material | undefined;
|
|
227
237
|
customDistanceMaterial?: import("three").Material | undefined;
|
|
228
238
|
onBeforeShadow?: ((renderer: import("three").WebGLRenderer, scene: import("three").Scene, camera: import("three").Camera, shadowCamera: import("three").Camera, geometry: import("three").BufferGeometry, depthMaterial: import("three").Material, group: import("three").Group) => void) | undefined;
|
|
@@ -268,20 +278,10 @@ export declare class NgtsText3D {
|
|
|
268
278
|
updateMatrix?: (() => void) | undefined;
|
|
269
279
|
updateMatrixWorld?: ((force?: boolean) => void) | undefined;
|
|
270
280
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | undefined;
|
|
271
|
-
toJSON?: ((meta?: import("three").JSONMeta) => import("three").MeshJSON) | undefined;
|
|
272
281
|
clone?: ((recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
273
282
|
copy?: ((object: import("three").Object3D, recursive?: boolean) => Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>) | undefined;
|
|
274
283
|
hasEventListener?: (<T extends keyof import("three").Object3DEventMap>(type: T, listener: import("three").EventListener<import("three").Object3DEventMap[T], T, Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>) => boolean) | undefined;
|
|
275
284
|
dispatchEvent?: (<T extends keyof import("three").Object3DEventMap>(event: import("three").BaseEvent<T> & import("three").Object3DEventMap[T]) => void) | undefined;
|
|
276
|
-
readonly isMesh?: true | undefined;
|
|
277
|
-
geometry?: import("three").BufferGeometry<import("three").NormalBufferAttributes> | undefined;
|
|
278
|
-
material?: import("three").Material | import("three").Material[] | undefined;
|
|
279
|
-
morphTargetInfluences?: number[] | undefined;
|
|
280
|
-
morphTargetDictionary?: {
|
|
281
|
-
[key: string]: number;
|
|
282
|
-
} | undefined;
|
|
283
|
-
updateMorphTargets?: (() => void) | undefined;
|
|
284
|
-
getVertexPosition?: ((index: number, target: import("three").Vector3) => import("three").Vector3) | undefined;
|
|
285
285
|
position: import("angular-three").NgtVector3;
|
|
286
286
|
up: import("angular-three").NgtVector3;
|
|
287
287
|
scale: import("angular-three").NgtVector3;
|
|
@@ -291,7 +291,7 @@ export declare class NgtsText3D {
|
|
|
291
291
|
layers: import("angular-three").NgtLayers;
|
|
292
292
|
dispose: (() => void) | null;
|
|
293
293
|
raycast: import("three").Object3D["raycast"] | null;
|
|
294
|
-
}> & NgtsText3DOptions, "size" | "height" | "
|
|
294
|
+
}> & NgtsText3DOptions, "size" | "height" | "curveSegments" | "bevelEnabled" | "bevelThickness" | "bevelSize" | "bevelOffset" | "bevelSegments" | "lineHeight" | "letterSpacing" | "smooth">>;
|
|
295
295
|
meshRef: import("@angular/core").Signal<ElementRef<Mesh<import("three").BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>>>;
|
|
296
296
|
private textGeometryRef;
|
|
297
297
|
loadedFont: import("@angular/core").Signal<import("three-stdlib").Font | null>;
|
|
@@ -300,12 +300,12 @@ export declare class NgtsText3D {
|
|
|
300
300
|
textArgs: import("@angular/core").Signal<(string | {
|
|
301
301
|
size?: number | undefined;
|
|
302
302
|
height?: number | undefined;
|
|
303
|
-
bevelSegments: number;
|
|
304
303
|
curveSegments?: number | undefined;
|
|
305
304
|
bevelEnabled?: boolean | undefined;
|
|
306
305
|
bevelThickness?: number | undefined;
|
|
307
306
|
bevelSize?: number | undefined;
|
|
308
307
|
bevelOffset?: number | undefined;
|
|
308
|
+
bevelSegments: number;
|
|
309
309
|
lineHeight?: number | undefined;
|
|
310
310
|
letterSpacing?: number | undefined;
|
|
311
311
|
font: import("three-stdlib").Font;
|
|
@@ -10,7 +10,7 @@ export interface NgtsCameraControlsOptions {
|
|
|
10
10
|
}
|
|
11
11
|
export declare class NgtsCameraControls {
|
|
12
12
|
options: import("@angular/core").InputSignalWithTransform<Partial<CameraControls> & NgtsCameraControlsOptions, "" | Partial<Partial<CameraControls> & NgtsCameraControlsOptions>>;
|
|
13
|
-
parameters: import("@angular/core").Signal<Omit<Partial<CameraControls> & NgtsCameraControlsOptions, "camera" | "
|
|
13
|
+
parameters: import("@angular/core").Signal<Omit<Partial<CameraControls> & NgtsCameraControlsOptions, "camera" | "makeDefault" | "regress" | "domElement">>;
|
|
14
14
|
changed: import("@angular/core").OutputEmitterRef<any>;
|
|
15
15
|
started: import("@angular/core").OutputEmitterRef<any>;
|
|
16
16
|
ended: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -13,7 +13,7 @@ export interface NgtsOrbitControlsOptions {
|
|
|
13
13
|
}
|
|
14
14
|
export declare class NgtsOrbitControls {
|
|
15
15
|
options: import("@angular/core").InputSignalWithTransform<Partial<OrbitControls> & NgtsOrbitControlsOptions, "" | Partial<Partial<OrbitControls> & NgtsOrbitControlsOptions>>;
|
|
16
|
-
parameters: import("@angular/core").Signal<Omit<Partial<OrbitControls> & NgtsOrbitControlsOptions, "camera" | "
|
|
16
|
+
parameters: import("@angular/core").Signal<Omit<Partial<OrbitControls> & NgtsOrbitControlsOptions, "camera" | "makeDefault" | "regress" | "domElement" | "enableDamping" | "keyEvents">>;
|
|
17
17
|
changed: import("@angular/core").OutputEmitterRef<Event<string, unknown>>;
|
|
18
18
|
started: import("@angular/core").OutputEmitterRef<Event<string, unknown>>;
|
|
19
19
|
ended: import("@angular/core").OutputEmitterRef<Event<string, unknown>>;
|