angular-three-soba 4.0.0-next.91 → 4.0.0-next.92
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 +55 -55
- package/abstractions/lib/edges.d.ts +55 -55
- package/abstractions/lib/line.d.ts +1 -1
- package/abstractions/lib/prism-geometry.d.ts +4 -4
- package/abstractions/lib/rounded-box.d.ts +1 -1
- package/abstractions/lib/text-3d.d.ts +7 -7
- package/abstractions/lib/text.d.ts +1 -1
- package/cameras/lib/cube-camera.d.ts +1 -1
- package/cameras/lib/orthographic-camera.d.ts +1 -1
- package/cameras/lib/perspective-camera.d.ts +1 -1
- package/controls/lib/camera-controls.d.ts +1 -2
- package/controls/lib/orbit-controls.d.ts +1 -1
- package/controls/lib/trackball-controls.d.ts +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +0 -1
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-performances.mjs +5 -0
- package/fesm2022/angular-three-soba-performances.mjs.map +1 -1
- package/gizmos/lib/gizmo-helper/gizmo-viewport.d.ts +1 -1
- package/gizmos/lib/pivot-controls/pivot-controls.d.ts +1 -1
- package/gizmos/lib/transform-controls.d.ts +2 -2
- package/materials/lib/custom-shader-material.d.ts +2 -2
- package/materials/lib/mesh-portal-material.d.ts +1 -1
- package/materials/lib/mesh-refraction-material.d.ts +1 -1
- package/materials/lib/mesh-transmission-material.d.ts +1 -1
- package/misc/lib/decal.d.ts +1 -1
- package/misc/lib/html/html.d.ts +1 -1
- package/package.json +1 -1
- package/performances/lib/bvh.d.ts +1 -1
- package/performances/lib/instances/instances.d.ts +1 -1
- package/performances/lib/points/points.d.ts +1 -1
- package/performances/lib/segments/segments.d.ts +23 -23
- package/staging/lib/accumulative-shadows.d.ts +1 -1
- package/staging/lib/caustics.d.ts +1 -1
- package/staging/lib/center.d.ts +2 -2
- package/staging/lib/contact-shadows.d.ts +1 -1
- package/staging/lib/lightformer.d.ts +1 -1
- package/staging/lib/mask.d.ts +1 -1
- package/staging/lib/render-texture.d.ts +1 -1
- package/staging/lib/spot-light.d.ts +2 -2
- package/staging/lib/stage.d.ts +2 -2
|
@@ -29,18 +29,6 @@ export declare class NgtsCatmullRomLine {
|
|
|
29
29
|
type?: string | undefined;
|
|
30
30
|
parent?: THREE.Object3D<THREE.Object3DEventMap> | Readonly<THREE.Object3D<THREE.Object3DEventMap> | null> | undefined;
|
|
31
31
|
children?: THREE.Object3D<THREE.Object3DEventMap>[] | undefined;
|
|
32
|
-
isMesh?: true | undefined;
|
|
33
|
-
geometry?: import("three-stdlib").LineGeometry | Readonly<import("three-stdlib").LineGeometry | undefined>;
|
|
34
|
-
material?: import("three-stdlib").LineMaterial | Readonly<import("three-stdlib").LineMaterial | undefined>;
|
|
35
|
-
morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
|
|
36
|
-
morphTargetDictionary?: {
|
|
37
|
-
[key: string]: number;
|
|
38
|
-
} | Readonly<{
|
|
39
|
-
[key: string]: number;
|
|
40
|
-
} | undefined>;
|
|
41
|
-
updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
|
|
42
|
-
getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
|
|
43
|
-
toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
|
|
44
32
|
isObject3D?: true | undefined;
|
|
45
33
|
up?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
|
|
46
34
|
position?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
|
|
@@ -111,6 +99,7 @@ export declare class NgtsCatmullRomLine {
|
|
|
111
99
|
updateMatrix?: (() => void) | Readonly<(() => void) | undefined>;
|
|
112
100
|
updateMatrixWorld?: ((force?: boolean) => void) | Readonly<((force?: boolean) => void) | undefined>;
|
|
113
101
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | Readonly<((updateParents: boolean, updateChildren: boolean) => void) | undefined>;
|
|
102
|
+
toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
|
|
114
103
|
clone?: ((((recursive?: boolean) => import("three-stdlib").Line2) | Readonly<(recursive?: boolean) => import("three-stdlib").Line2>) & ((() => import("three-stdlib").LineMaterial) | Readonly<() => import("three-stdlib").LineMaterial>)) | undefined;
|
|
115
104
|
copy?: ((((object: THREE.Object3D, recursive?: boolean) => import("three-stdlib").Line2) | Readonly<(object: THREE.Object3D, recursive?: boolean) => import("three-stdlib").Line2>) & (((material: THREE.Material) => import("three-stdlib").LineMaterial) | Readonly<(material: THREE.Material) => import("three-stdlib").LineMaterial>)) | undefined;
|
|
116
105
|
addEventListener?: ((((<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, import("three-stdlib").Line2>) => void) | Readonly<(<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, import("three-stdlib").Line2>) => void) | undefined>) & (<TEventKey extends keyof import("angular-three").NgtEventHandlers | "added" | "removed" | "childadded" | "childremoved" | "change" | keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<typeof import("three-stdlib").Line2, import("three-stdlib").Line2>, ev: import("angular-three").NgtAllObject3DEventsMap<import("three-stdlib").Line2>[TEventKey]) => any) => void)) & (((<T extends "dispose">(type: T, listener: THREE.EventListener<{
|
|
@@ -134,9 +123,62 @@ export declare class NgtsCatmullRomLine {
|
|
|
134
123
|
dispose: {};
|
|
135
124
|
}[T]) => void)>)) | undefined;
|
|
136
125
|
dispose?: (((() => void) | Readonly<() => void> | null) & (((() => void) & (() => void)) | Readonly<(() => void) & (() => void)>)) | undefined;
|
|
126
|
+
parameters?: ((Partial<import("three-stdlib").Line2> | Readonly<Partial<import("three-stdlib").Line2>>) & (Partial<import("three-stdlib").LineMaterial> | Readonly<Partial<import("three-stdlib").LineMaterial>>)) | undefined;
|
|
127
|
+
geometry?: import("three-stdlib").LineGeometry | Readonly<import("three-stdlib").LineGeometry | undefined>;
|
|
128
|
+
material?: import("three-stdlib").LineMaterial | Readonly<import("three-stdlib").LineMaterial | undefined>;
|
|
129
|
+
isLine2?: true | undefined;
|
|
130
|
+
isLineSegments2?: true | undefined;
|
|
131
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | Readonly<(() => import("three-stdlib").Line2) | undefined>;
|
|
132
|
+
isMesh?: true | undefined;
|
|
133
|
+
morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
|
|
134
|
+
morphTargetDictionary?: {
|
|
135
|
+
[key: string]: number;
|
|
136
|
+
} | Readonly<{
|
|
137
|
+
[key: string]: number;
|
|
138
|
+
} | undefined>;
|
|
139
|
+
updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
|
|
140
|
+
getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
|
|
141
|
+
color?: THREE.ColorRepresentation | undefined;
|
|
142
|
+
dashed?: boolean | undefined | undefined;
|
|
143
|
+
dashScale?: number | undefined | undefined;
|
|
144
|
+
dashSize?: number | undefined | undefined;
|
|
145
|
+
dashOffset?: number | undefined | undefined;
|
|
146
|
+
gapSize?: number | undefined | undefined;
|
|
147
|
+
opacity?: number | undefined | undefined;
|
|
148
|
+
isLineMaterial?: true | undefined;
|
|
149
|
+
linewidth?: number | undefined | undefined;
|
|
150
|
+
resolution?: (THREE.Vector2 & (number | THREE.Vector2 | [x: number, y: number] | Readonly<THREE.Vector2> | readonly [x: number, y: number])) | undefined;
|
|
151
|
+
alphaToCoverage?: boolean | undefined | undefined;
|
|
152
|
+
worldUnits?: boolean | undefined | undefined;
|
|
153
|
+
isShaderMaterial?: true | undefined;
|
|
154
|
+
defines?: any;
|
|
155
|
+
uniforms?: {
|
|
156
|
+
[uniform: string]: THREE.IUniform<any>;
|
|
157
|
+
} | Readonly<{
|
|
158
|
+
[uniform: string]: THREE.IUniform<any>;
|
|
159
|
+
} | undefined>;
|
|
160
|
+
uniformsGroups?: THREE.UniformsGroup[] | Readonly<THREE.UniformsGroup[] | undefined>;
|
|
161
|
+
vertexShader?: Readonly<string | undefined>;
|
|
162
|
+
fragmentShader?: Readonly<string | undefined>;
|
|
163
|
+
wireframe?: boolean | undefined | undefined;
|
|
164
|
+
wireframeLinewidth?: Readonly<number | undefined>;
|
|
165
|
+
fog?: Readonly<boolean | undefined>;
|
|
166
|
+
lights?: Readonly<boolean | undefined>;
|
|
167
|
+
clipping?: Readonly<boolean | undefined>;
|
|
168
|
+
extensions?: {
|
|
169
|
+
clipCullDistance: boolean;
|
|
170
|
+
multiDraw: boolean;
|
|
171
|
+
} | Readonly<{
|
|
172
|
+
clipCullDistance: boolean;
|
|
173
|
+
multiDraw: boolean;
|
|
174
|
+
} | undefined>;
|
|
175
|
+
defaultAttributeValues?: any;
|
|
176
|
+
index0AttributeName?: Readonly<string | undefined>;
|
|
177
|
+
uniformsNeedUpdate?: Readonly<boolean | undefined>;
|
|
178
|
+
glslVersion?: "100" | "300 es" | null | undefined;
|
|
179
|
+
setValues?: ((parameters: THREE.ShaderMaterialParameters) => void) | Readonly<((parameters: THREE.ShaderMaterialParameters) => void) | undefined>;
|
|
137
180
|
isMaterial?: true | undefined;
|
|
138
181
|
alphaHash?: boolean | undefined | undefined;
|
|
139
|
-
alphaToCoverage?: boolean | undefined | undefined;
|
|
140
182
|
blendAlpha?: number | undefined | undefined;
|
|
141
183
|
blendColor?: (THREE.ColorRepresentation & (string | number | THREE.Color | [r: number, g: number, b: number] | [color: THREE.ColorRepresentation] | Readonly<THREE.Color> | readonly [r: number, g: number, b: number] | readonly [color: THREE.ColorRepresentation])) | undefined;
|
|
142
184
|
blendDst?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | undefined;
|
|
@@ -150,7 +192,6 @@ export declare class NgtsCatmullRomLine {
|
|
|
150
192
|
clippingPlanes?: THREE.Plane[] | (THREE.Plane[] & readonly THREE.Plane[]) | undefined;
|
|
151
193
|
clipShadows?: boolean | undefined | undefined;
|
|
152
194
|
colorWrite?: boolean | undefined | undefined;
|
|
153
|
-
defines?: any;
|
|
154
195
|
depthFunc?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | undefined;
|
|
155
196
|
depthTest?: boolean | undefined | undefined;
|
|
156
197
|
depthWrite?: boolean | undefined | undefined;
|
|
@@ -162,7 +203,6 @@ export declare class NgtsCatmullRomLine {
|
|
|
162
203
|
stencilFail?: 0 | 7680 | 7681 | 7682 | 7283 | 34055 | 34056 | 5386 | undefined;
|
|
163
204
|
stencilZFail?: 0 | 7680 | 7681 | 7682 | 7283 | 34055 | 34056 | 5386 | undefined;
|
|
164
205
|
stencilZPass?: 0 | 7680 | 7681 | 7682 | 7283 | 34055 | 34056 | 5386 | undefined;
|
|
165
|
-
opacity?: number | undefined | undefined;
|
|
166
206
|
polygonOffset?: boolean | undefined | undefined;
|
|
167
207
|
polygonOffsetFactor?: number | undefined | undefined;
|
|
168
208
|
polygonOffsetUnits?: number | undefined | undefined;
|
|
@@ -178,49 +218,9 @@ export declare class NgtsCatmullRomLine {
|
|
|
178
218
|
alphaTest?: number | undefined | undefined;
|
|
179
219
|
onBeforeCompile?: ((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
|
|
180
220
|
customProgramCacheKey?: (() => string) | Readonly<(() => string) | undefined>;
|
|
181
|
-
setValues?: ((parameters: THREE.ShaderMaterialParameters) => void) | Readonly<((parameters: THREE.ShaderMaterialParameters) => void) | undefined>;
|
|
182
221
|
needsUpdate?: Readonly<boolean | undefined>;
|
|
183
222
|
onBuild?: ((object: THREE.Object3D, parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((object: THREE.Object3D, parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
|
|
184
|
-
parameters?: ((Partial<import("three-stdlib").Line2> | Readonly<Partial<import("three-stdlib").Line2>>) & (Partial<import("three-stdlib").LineMaterial> | Readonly<Partial<import("three-stdlib").LineMaterial>>)) | undefined;
|
|
185
|
-
color?: THREE.ColorRepresentation | undefined;
|
|
186
|
-
dashed?: boolean | undefined | undefined;
|
|
187
|
-
dashScale?: number | undefined | undefined;
|
|
188
|
-
dashSize?: number | undefined | undefined;
|
|
189
|
-
dashOffset?: number | undefined | undefined;
|
|
190
|
-
gapSize?: number | undefined | undefined;
|
|
191
|
-
linewidth?: number | undefined | undefined;
|
|
192
|
-
resolution?: (THREE.Vector2 & (number | THREE.Vector2 | [x: number, y: number] | Readonly<THREE.Vector2> | readonly [x: number, y: number])) | undefined;
|
|
193
|
-
wireframe?: boolean | undefined | undefined;
|
|
194
|
-
worldUnits?: boolean | undefined | undefined;
|
|
195
223
|
format?: THREE.PixelFormat | undefined;
|
|
196
|
-
isLine2?: true | undefined;
|
|
197
|
-
isLineSegments2?: true | undefined;
|
|
198
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | Readonly<(() => import("three-stdlib").Line2) | undefined>;
|
|
199
|
-
isLineMaterial?: true | undefined;
|
|
200
|
-
isShaderMaterial?: true | undefined;
|
|
201
|
-
uniforms?: {
|
|
202
|
-
[uniform: string]: THREE.IUniform<any>;
|
|
203
|
-
} | Readonly<{
|
|
204
|
-
[uniform: string]: THREE.IUniform<any>;
|
|
205
|
-
} | undefined>;
|
|
206
|
-
uniformsGroups?: THREE.UniformsGroup[] | Readonly<THREE.UniformsGroup[] | undefined>;
|
|
207
|
-
vertexShader?: Readonly<string | undefined>;
|
|
208
|
-
fragmentShader?: Readonly<string | undefined>;
|
|
209
|
-
wireframeLinewidth?: Readonly<number | undefined>;
|
|
210
|
-
fog?: Readonly<boolean | undefined>;
|
|
211
|
-
lights?: Readonly<boolean | undefined>;
|
|
212
|
-
clipping?: Readonly<boolean | undefined>;
|
|
213
|
-
extensions?: {
|
|
214
|
-
clipCullDistance: boolean;
|
|
215
|
-
multiDraw: boolean;
|
|
216
|
-
} | Readonly<{
|
|
217
|
-
clipCullDistance: boolean;
|
|
218
|
-
multiDraw: boolean;
|
|
219
|
-
} | undefined>;
|
|
220
|
-
defaultAttributeValues?: any;
|
|
221
|
-
index0AttributeName?: Readonly<string | undefined>;
|
|
222
|
-
uniformsNeedUpdate?: Readonly<boolean | undefined>;
|
|
223
|
-
glslVersion?: "100" | "300 es" | null | undefined;
|
|
224
224
|
lineWidth: number;
|
|
225
225
|
}>;
|
|
226
226
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsCatmullRomLine, never>;
|
|
@@ -22,17 +22,6 @@ export declare class NgtsEdges {
|
|
|
22
22
|
type?: string | undefined;
|
|
23
23
|
parent?: THREE.Object3D<THREE.Object3DEventMap> | Readonly<THREE.Object3D<THREE.Object3DEventMap> | null> | undefined;
|
|
24
24
|
children?: THREE.Object3D<THREE.Object3DEventMap>[] | undefined;
|
|
25
|
-
isMesh?: true | undefined;
|
|
26
|
-
material?: ((THREE.Material | THREE.Material[] | Readonly<THREE.Material> | readonly THREE.Material[]) & (import("three-stdlib").LineMaterial | Readonly<import("three-stdlib").LineMaterial>)) | undefined;
|
|
27
|
-
morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
|
|
28
|
-
morphTargetDictionary?: {
|
|
29
|
-
[key: string]: number;
|
|
30
|
-
} | Readonly<{
|
|
31
|
-
[key: string]: number;
|
|
32
|
-
} | undefined>;
|
|
33
|
-
updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
|
|
34
|
-
getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
|
|
35
|
-
toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
|
|
36
25
|
isObject3D?: true | undefined;
|
|
37
26
|
up?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
|
|
38
27
|
position?: THREE.Vector3 | [x: number, y: number, z: number] | Readonly<number | THREE.Vector3 | [x: number, y: number, z: number] | undefined>;
|
|
@@ -103,6 +92,7 @@ export declare class NgtsEdges {
|
|
|
103
92
|
updateMatrix?: (() => void) | Readonly<(() => void) | undefined>;
|
|
104
93
|
updateMatrixWorld?: ((force?: boolean) => void) | Readonly<((force?: boolean) => void) | undefined>;
|
|
105
94
|
updateWorldMatrix?: ((updateParents: boolean, updateChildren: boolean) => void) | Readonly<((updateParents: boolean, updateChildren: boolean) => void) | undefined>;
|
|
95
|
+
toJSON?: ((((meta?: THREE.JSONMeta) => THREE.MeshJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.MeshJSON>) & (((meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON) | Readonly<(meta?: THREE.JSONMeta) => THREE.ShaderMaterialJSON>)) | undefined;
|
|
106
96
|
clone?: ((((recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>) | Readonly<(recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) & ((((recursive?: boolean) => import("three-stdlib").Line2) | Readonly<(recursive?: boolean) => import("three-stdlib").Line2>) & ((() => import("three-stdlib").LineMaterial) | Readonly<() => import("three-stdlib").LineMaterial>))) | undefined;
|
|
107
97
|
copy?: ((((object: THREE.Object3D, recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>) | Readonly<(object: THREE.Object3D, recursive?: boolean) => THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) & ((((object: THREE.Object3D, recursive?: boolean) => import("three-stdlib").Line2) | Readonly<(object: THREE.Object3D, recursive?: boolean) => import("three-stdlib").Line2>) & (((material: THREE.Material) => import("three-stdlib").LineMaterial) | Readonly<(material: THREE.Material) => import("three-stdlib").LineMaterial>))) | undefined;
|
|
108
98
|
addEventListener?: ((((<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) => void) | Readonly<(<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>) => void) | undefined>) & (<TEventKey extends keyof import("angular-three").NgtEventHandlers | "added" | "removed" | "childadded" | "childremoved" | "change" | keyof import("angular-three").NgtNodeEventMap<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<typeof THREE.Mesh, THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>, ev: import("angular-three").NgtAllObject3DEventsMap<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>[TEventKey]) => any) => void)) & ((((<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, import("three-stdlib").Line2>) => void) | Readonly<(<T extends keyof THREE.Object3DEventMap>(type: T, listener: THREE.EventListener<THREE.Object3DEventMap[T], T, import("three-stdlib").Line2>) => void) | undefined>) & (<TEventKey extends keyof import("angular-three").NgtEventHandlers | "added" | "removed" | "childadded" | "childremoved" | "change" | keyof import("angular-three").NgtNodeEventMap<import("three-stdlib").Line2>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<typeof import("three-stdlib").Line2, import("three-stdlib").Line2>, ev: import("angular-three").NgtAllObject3DEventsMap<import("three-stdlib").Line2>[TEventKey]) => any) => void)) & (((<T extends "dispose">(type: T, listener: THREE.EventListener<{
|
|
@@ -126,9 +116,62 @@ export declare class NgtsEdges {
|
|
|
126
116
|
dispose: {};
|
|
127
117
|
}[T]) => void)>)) | undefined;
|
|
128
118
|
dispose?: (((() => void) | Readonly<() => void> | null) & (((() => void) & (() => void)) | Readonly<(() => void) & (() => void)>)) | undefined;
|
|
119
|
+
parameters?: ((Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>> | Readonly<Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>) & ((Partial<import("three-stdlib").Line2> | Readonly<Partial<import("three-stdlib").Line2>>) & (Partial<import("three-stdlib").LineMaterial> | Readonly<Partial<import("three-stdlib").LineMaterial>>))) | undefined;
|
|
120
|
+
__ngt_args__?: (([geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes> | undefined, material?: THREE.Material | THREE.Material[] | undefined] | readonly [geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes> | undefined, material?: THREE.Material | THREE.Material[] | undefined]) & (([geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined] | readonly [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined]) & ([parameters?: LineMaterialParameters | undefined] | readonly [parameters?: LineMaterialParameters | undefined]))) | undefined;
|
|
121
|
+
material?: ((THREE.Material | THREE.Material[] | Readonly<THREE.Material> | readonly THREE.Material[]) & (import("three-stdlib").LineMaterial | Readonly<import("three-stdlib").LineMaterial>)) | undefined;
|
|
122
|
+
isLine2?: true | undefined;
|
|
123
|
+
isLineSegments2?: true | undefined;
|
|
124
|
+
computeLineDistances?: (() => import("three-stdlib").Line2) | Readonly<(() => import("three-stdlib").Line2) | undefined>;
|
|
125
|
+
isMesh?: true | undefined;
|
|
126
|
+
morphTargetInfluences?: number[] | Readonly<number[] | undefined>;
|
|
127
|
+
morphTargetDictionary?: {
|
|
128
|
+
[key: string]: number;
|
|
129
|
+
} | Readonly<{
|
|
130
|
+
[key: string]: number;
|
|
131
|
+
} | undefined>;
|
|
132
|
+
updateMorphTargets?: (() => void) | Readonly<(() => void) | undefined>;
|
|
133
|
+
getVertexPosition?: ((index: number, target: THREE.Vector3) => THREE.Vector3) | Readonly<((index: number, target: THREE.Vector3) => THREE.Vector3) | undefined>;
|
|
134
|
+
color?: THREE.ColorRepresentation | undefined;
|
|
135
|
+
dashed?: boolean | undefined | undefined;
|
|
136
|
+
dashScale?: number | undefined | undefined;
|
|
137
|
+
dashSize?: number | undefined | undefined;
|
|
138
|
+
dashOffset?: number | undefined | undefined;
|
|
139
|
+
gapSize?: number | undefined | undefined;
|
|
140
|
+
opacity?: number | undefined | undefined;
|
|
141
|
+
isLineMaterial?: true | undefined;
|
|
142
|
+
linewidth?: number | undefined | undefined;
|
|
143
|
+
resolution?: (THREE.Vector2 & (number | THREE.Vector2 | [x: number, y: number] | Readonly<THREE.Vector2> | readonly [x: number, y: number])) | undefined;
|
|
144
|
+
alphaToCoverage?: boolean | undefined | undefined;
|
|
145
|
+
worldUnits?: boolean | undefined | undefined;
|
|
146
|
+
isShaderMaterial?: true | undefined;
|
|
147
|
+
defines?: any;
|
|
148
|
+
uniforms?: {
|
|
149
|
+
[uniform: string]: THREE.IUniform<any>;
|
|
150
|
+
} | Readonly<{
|
|
151
|
+
[uniform: string]: THREE.IUniform<any>;
|
|
152
|
+
} | undefined>;
|
|
153
|
+
uniformsGroups?: THREE.UniformsGroup[] | Readonly<THREE.UniformsGroup[] | undefined>;
|
|
154
|
+
vertexShader?: Readonly<string | undefined>;
|
|
155
|
+
fragmentShader?: Readonly<string | undefined>;
|
|
156
|
+
wireframe?: boolean | undefined | undefined;
|
|
157
|
+
wireframeLinewidth?: Readonly<number | undefined>;
|
|
158
|
+
fog?: Readonly<boolean | undefined>;
|
|
159
|
+
lights?: Readonly<boolean | undefined>;
|
|
160
|
+
clipping?: Readonly<boolean | undefined>;
|
|
161
|
+
extensions?: {
|
|
162
|
+
clipCullDistance: boolean;
|
|
163
|
+
multiDraw: boolean;
|
|
164
|
+
} | Readonly<{
|
|
165
|
+
clipCullDistance: boolean;
|
|
166
|
+
multiDraw: boolean;
|
|
167
|
+
} | undefined>;
|
|
168
|
+
defaultAttributeValues?: any;
|
|
169
|
+
index0AttributeName?: Readonly<string | undefined>;
|
|
170
|
+
uniformsNeedUpdate?: Readonly<boolean | undefined>;
|
|
171
|
+
glslVersion?: "100" | "300 es" | null | undefined;
|
|
172
|
+
setValues?: ((parameters: THREE.ShaderMaterialParameters) => void) | Readonly<((parameters: THREE.ShaderMaterialParameters) => void) | undefined>;
|
|
129
173
|
isMaterial?: true | undefined;
|
|
130
174
|
alphaHash?: boolean | undefined | undefined;
|
|
131
|
-
alphaToCoverage?: boolean | undefined | undefined;
|
|
132
175
|
blendAlpha?: number | undefined | undefined;
|
|
133
176
|
blendColor?: (THREE.ColorRepresentation & (string | number | THREE.Color | [r: number, g: number, b: number] | [color: THREE.ColorRepresentation] | Readonly<THREE.Color> | readonly [r: number, g: number, b: number] | readonly [color: THREE.ColorRepresentation])) | undefined;
|
|
134
177
|
blendDst?: 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 211 | 212 | 213 | 214 | undefined;
|
|
@@ -142,7 +185,6 @@ export declare class NgtsEdges {
|
|
|
142
185
|
clippingPlanes?: THREE.Plane[] | (THREE.Plane[] & readonly THREE.Plane[]) | undefined;
|
|
143
186
|
clipShadows?: boolean | undefined | undefined;
|
|
144
187
|
colorWrite?: boolean | undefined | undefined;
|
|
145
|
-
defines?: any;
|
|
146
188
|
depthFunc?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | undefined;
|
|
147
189
|
depthTest?: boolean | undefined | undefined;
|
|
148
190
|
depthWrite?: boolean | undefined | undefined;
|
|
@@ -154,7 +196,6 @@ export declare class NgtsEdges {
|
|
|
154
196
|
stencilFail?: 0 | 7680 | 7681 | 7682 | 7283 | 34055 | 34056 | 5386 | undefined;
|
|
155
197
|
stencilZFail?: 0 | 7680 | 7681 | 7682 | 7283 | 34055 | 34056 | 5386 | undefined;
|
|
156
198
|
stencilZPass?: 0 | 7680 | 7681 | 7682 | 7283 | 34055 | 34056 | 5386 | undefined;
|
|
157
|
-
opacity?: number | undefined | undefined;
|
|
158
199
|
polygonOffset?: boolean | undefined | undefined;
|
|
159
200
|
polygonOffsetFactor?: number | undefined | undefined;
|
|
160
201
|
polygonOffsetUnits?: number | undefined | undefined;
|
|
@@ -170,50 +211,9 @@ export declare class NgtsEdges {
|
|
|
170
211
|
alphaTest?: number | undefined | undefined;
|
|
171
212
|
onBeforeCompile?: ((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
|
|
172
213
|
customProgramCacheKey?: (() => string) | Readonly<(() => string) | undefined>;
|
|
173
|
-
setValues?: ((parameters: THREE.ShaderMaterialParameters) => void) | Readonly<((parameters: THREE.ShaderMaterialParameters) => void) | undefined>;
|
|
174
214
|
needsUpdate?: Readonly<boolean | undefined>;
|
|
175
215
|
onBuild?: ((object: THREE.Object3D, parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | Readonly<((object: THREE.Object3D, parameters: THREE.WebGLProgramParametersWithUniforms, renderer: THREE.WebGLRenderer) => void) | undefined>;
|
|
176
|
-
parameters?: ((Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>> | Readonly<Partial<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>) & ((Partial<import("three-stdlib").Line2> | Readonly<Partial<import("three-stdlib").Line2>>) & (Partial<import("three-stdlib").LineMaterial> | Readonly<Partial<import("three-stdlib").LineMaterial>>))) | undefined;
|
|
177
|
-
__ngt_args__?: (([geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes> | undefined, material?: THREE.Material | THREE.Material[] | undefined] | readonly [geometry?: THREE.BufferGeometry<THREE.NormalBufferAttributes> | undefined, material?: THREE.Material | THREE.Material[] | undefined]) & (([geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined] | readonly [geometry?: import("three-stdlib").LineGeometry | undefined, material?: import("three-stdlib").LineMaterial | undefined]) & ([parameters?: LineMaterialParameters | undefined] | readonly [parameters?: LineMaterialParameters | undefined]))) | undefined;
|
|
178
|
-
color?: THREE.ColorRepresentation | undefined;
|
|
179
|
-
dashed?: boolean | undefined | undefined;
|
|
180
|
-
dashScale?: number | undefined | undefined;
|
|
181
|
-
dashSize?: number | undefined | undefined;
|
|
182
|
-
dashOffset?: number | undefined | undefined;
|
|
183
|
-
gapSize?: number | undefined | undefined;
|
|
184
|
-
linewidth?: number | undefined | undefined;
|
|
185
|
-
resolution?: (THREE.Vector2 & (number | THREE.Vector2 | [x: number, y: number] | Readonly<THREE.Vector2> | readonly [x: number, y: number])) | undefined;
|
|
186
|
-
wireframe?: boolean | undefined | undefined;
|
|
187
|
-
worldUnits?: boolean | undefined | undefined;
|
|
188
216
|
format?: THREE.PixelFormat | undefined;
|
|
189
|
-
isLine2?: true | undefined;
|
|
190
|
-
isLineSegments2?: true | undefined;
|
|
191
|
-
computeLineDistances?: (() => import("three-stdlib").Line2) | Readonly<(() => import("three-stdlib").Line2) | undefined>;
|
|
192
|
-
isLineMaterial?: true | undefined;
|
|
193
|
-
isShaderMaterial?: true | undefined;
|
|
194
|
-
uniforms?: {
|
|
195
|
-
[uniform: string]: THREE.IUniform<any>;
|
|
196
|
-
} | Readonly<{
|
|
197
|
-
[uniform: string]: THREE.IUniform<any>;
|
|
198
|
-
} | undefined>;
|
|
199
|
-
uniformsGroups?: THREE.UniformsGroup[] | Readonly<THREE.UniformsGroup[] | undefined>;
|
|
200
|
-
vertexShader?: Readonly<string | undefined>;
|
|
201
|
-
fragmentShader?: Readonly<string | undefined>;
|
|
202
|
-
wireframeLinewidth?: Readonly<number | undefined>;
|
|
203
|
-
fog?: Readonly<boolean | undefined>;
|
|
204
|
-
lights?: Readonly<boolean | undefined>;
|
|
205
|
-
clipping?: Readonly<boolean | undefined>;
|
|
206
|
-
extensions?: {
|
|
207
|
-
clipCullDistance: boolean;
|
|
208
|
-
multiDraw: boolean;
|
|
209
|
-
} | Readonly<{
|
|
210
|
-
clipCullDistance: boolean;
|
|
211
|
-
multiDraw: boolean;
|
|
212
|
-
} | undefined>;
|
|
213
|
-
defaultAttributeValues?: any;
|
|
214
|
-
index0AttributeName?: Readonly<string | undefined>;
|
|
215
|
-
uniformsNeedUpdate?: Readonly<boolean | undefined>;
|
|
216
|
-
glslVersion?: "100" | "300 es" | null | undefined;
|
|
217
217
|
lineWidth?: number | undefined;
|
|
218
218
|
}>;
|
|
219
219
|
protected tmpPoints: number[];
|
|
@@ -18,7 +18,7 @@ export type NgtsLineOptions = Omit<LineMaterialParameters, 'vertexColors' | 'col
|
|
|
18
18
|
export declare class NgtsLine {
|
|
19
19
|
points: import("@angular/core").InputSignal<(number | THREE.Vector2 | THREE.Vector3 | [number, number, number] | [number, number])[]>;
|
|
20
20
|
options: import("@angular/core").InputSignalWithTransform<NgtsLineOptions, "" | Partial<NgtsLineOptions>>;
|
|
21
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "
|
|
21
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsLineOptions, "color" | "dashed" | "linewidth" | "vertexColors" | "lineWidth" | "segments">>;
|
|
22
22
|
lineRef: import("@angular/core").Signal<ElementRef<Line2 | LineSegments2> | undefined>;
|
|
23
23
|
private store;
|
|
24
24
|
private segments;
|
|
@@ -14,13 +14,13 @@ export declare class NgtsPrismGeometry {
|
|
|
14
14
|
depth: number;
|
|
15
15
|
/** Height */
|
|
16
16
|
height: number;
|
|
17
|
+
curveSegments?: number | undefined | undefined;
|
|
18
|
+
steps?: number | undefined | undefined;
|
|
17
19
|
bevelEnabled?: boolean | undefined | undefined;
|
|
18
|
-
bevelOffset?: number | undefined | undefined;
|
|
19
|
-
bevelSize?: number | undefined | undefined;
|
|
20
20
|
bevelThickness?: number | undefined | undefined;
|
|
21
|
-
|
|
21
|
+
bevelSize?: number | undefined | undefined;
|
|
22
|
+
bevelOffset?: number | undefined | undefined;
|
|
22
23
|
bevelSegments?: number | undefined | undefined;
|
|
23
|
-
steps?: number | undefined | undefined;
|
|
24
24
|
extrudePath?: THREE.Curve<THREE.Vector3> | undefined;
|
|
25
25
|
UVGenerator?: THREE.UVGenerator | undefined;
|
|
26
26
|
}>;
|
|
@@ -15,7 +15,7 @@ export interface NgtsRoundedBoxOptions extends Partial<NgtThreeElements['ngt-mes
|
|
|
15
15
|
}
|
|
16
16
|
export declare class NgtsRoundedBox {
|
|
17
17
|
options: import("@angular/core").InputSignalWithTransform<NgtsRoundedBoxOptions, "" | Partial<NgtsRoundedBoxOptions>>;
|
|
18
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsRoundedBoxOptions, "
|
|
18
|
+
protected 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,23 +12,23 @@ 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<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions, "" | Partial<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions>>;
|
|
15
|
-
protected parameters: import("@angular/core").Signal<Omit<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions, "
|
|
15
|
+
protected parameters: import("@angular/core").Signal<Omit<Partial<NgtThreeElement<typeof THREE.Mesh>> & NgtsText3DOptions, "size" | "height" | "curveSegments" | "bevelEnabled" | "bevelThickness" | "bevelSize" | "bevelOffset" | "bevelSegments" | "lineHeight" | "letterSpacing" | "smooth">>;
|
|
16
16
|
meshRef: import("@angular/core").Signal<ElementRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>>>;
|
|
17
17
|
private textGeometryRef;
|
|
18
18
|
private loadedFont;
|
|
19
19
|
private smooth;
|
|
20
20
|
private textOptions;
|
|
21
21
|
protected textArgs: import("@angular/core").Signal<(string | {
|
|
22
|
+
size?: number | undefined;
|
|
23
|
+
height?: number | undefined;
|
|
24
|
+
curveSegments?: number | undefined;
|
|
22
25
|
bevelEnabled?: boolean | undefined;
|
|
23
|
-
bevelOffset?: number | undefined;
|
|
24
|
-
bevelSize?: number | undefined;
|
|
25
26
|
bevelThickness?: number | undefined;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
bevelSize?: number | undefined;
|
|
28
|
+
bevelOffset?: number | undefined;
|
|
29
|
+
bevelSegments: number;
|
|
29
30
|
lineHeight?: number | undefined;
|
|
30
31
|
letterSpacing?: number | undefined;
|
|
31
|
-
bevelSegments: number;
|
|
32
32
|
font: import("three-stdlib").Font;
|
|
33
33
|
})[] | null>;
|
|
34
34
|
constructor();
|
|
@@ -38,7 +38,7 @@ export interface NgtsTextOptions extends Partial<NgtThreeElements['ngt-mesh']> {
|
|
|
38
38
|
export declare class NgtsText {
|
|
39
39
|
text: import("@angular/core").InputSignal<string>;
|
|
40
40
|
options: import("@angular/core").InputSignalWithTransform<NgtsTextOptions, "" | Partial<NgtsTextOptions>>;
|
|
41
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsTextOptions, "
|
|
41
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsTextOptions, "characters" | "fontSize" | "font" | "anchorX" | "anchorY" | "sdfGlyphSize">>;
|
|
42
42
|
synced: import("@angular/core").OutputEmitterRef<Text>;
|
|
43
43
|
private objectEvents;
|
|
44
44
|
private store;
|
|
@@ -26,7 +26,7 @@ export type NgtsCubeCameraOptions = Partial<NgtThreeElements['ngt-group']> & Cub
|
|
|
26
26
|
};
|
|
27
27
|
export declare class NgtsCubeCamera {
|
|
28
28
|
options: import("@angular/core").InputSignalWithTransform<NgtsCubeCameraOptions, "" | Partial<NgtsCubeCameraOptions>>;
|
|
29
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsCubeCameraOptions, "
|
|
29
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsCubeCameraOptions, "resolution" | "near" | "far" | "envMap" | "fog" | "frames">>;
|
|
30
30
|
private cubeCamera;
|
|
31
31
|
protected camera: import("@angular/core").Signal<THREE.CubeCamera>;
|
|
32
32
|
protected texture: import("@angular/core").Signal<THREE.CubeTexture>;
|
|
@@ -16,7 +16,7 @@ export interface NgtsOrthographicCameraOptions extends Partial<NgtThreeElements[
|
|
|
16
16
|
}
|
|
17
17
|
export declare class NgtsOrthographicCamera {
|
|
18
18
|
options: import("@angular/core").InputSignalWithTransform<NgtsOrthographicCameraOptions, "" | Partial<NgtsOrthographicCameraOptions>>;
|
|
19
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsOrthographicCameraOptions, "
|
|
19
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsOrthographicCameraOptions, "resolution" | "envMap" | "frames" | "left" | "right" | "top" | "bottom" | "makeDefault">>;
|
|
20
20
|
protected content: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
21
21
|
protected cameraContent: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
22
22
|
cameraRef: import("@angular/core").Signal<ElementRef<THREE.OrthographicCamera>>;
|
|
@@ -16,7 +16,7 @@ export interface NgtsPerspectiveCameraOptions extends Partial<NgtThreeElements['
|
|
|
16
16
|
}
|
|
17
17
|
export declare class NgtsPerspectiveCamera {
|
|
18
18
|
options: import("@angular/core").InputSignalWithTransform<NgtsPerspectiveCameraOptions, "" | Partial<NgtsPerspectiveCameraOptions>>;
|
|
19
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsPerspectiveCameraOptions, "
|
|
19
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsPerspectiveCameraOptions, "resolution" | "envMap" | "frames" | "makeDefault">>;
|
|
20
20
|
protected content: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
21
21
|
protected cameraContent: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
22
22
|
cameraRef: import("@angular/core").Signal<ElementRef<THREE.PerspectiveCamera>>;
|
|
@@ -5,12 +5,11 @@ export interface NgtsCameraControlsOptions {
|
|
|
5
5
|
camera?: NgtCamera;
|
|
6
6
|
domElement?: HTMLElement;
|
|
7
7
|
makeDefault: boolean;
|
|
8
|
-
events: boolean;
|
|
9
8
|
regress: boolean;
|
|
10
9
|
}
|
|
11
10
|
export declare class NgtsCameraControls {
|
|
12
11
|
options: import("@angular/core").InputSignalWithTransform<Partial<CameraControls> & NgtsCameraControlsOptions, "" | Partial<Partial<CameraControls> & NgtsCameraControlsOptions>>;
|
|
13
|
-
protected parameters: import("@angular/core").Signal<Omit<Partial<CameraControls> & NgtsCameraControlsOptions, "
|
|
12
|
+
protected parameters: import("@angular/core").Signal<Omit<Partial<CameraControls> & NgtsCameraControlsOptions, "camera" | "makeDefault" | "regress" | "domElement">>;
|
|
14
13
|
changed: import("@angular/core").OutputEmitterRef<any>;
|
|
15
14
|
started: import("@angular/core").OutputEmitterRef<any>;
|
|
16
15
|
ended: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -17,7 +17,7 @@ export type NgtsOrbitControlsOptions = Omit<NgtOverwrite<NgtThreeElement<typeof
|
|
|
17
17
|
}>, 'attach' | 'addEventListener' | 'removeEventListener' | 'parameters' | '___ngt_args__' | '_domElementKeyEvents'>;
|
|
18
18
|
export declare class NgtsOrbitControls {
|
|
19
19
|
options: import("@angular/core").InputSignalWithTransform<NgtsOrbitControlsOptions, "" | Partial<NgtsOrbitControlsOptions>>;
|
|
20
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsOrbitControlsOptions, "
|
|
20
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsOrbitControlsOptions, "camera" | "makeDefault" | "regress" | "domElement" | "enableDamping" | "keyEvents">>;
|
|
21
21
|
changed: import("@angular/core").OutputEmitterRef<import("node_modules/three-stdlib/controls/EventDispatcher").Event<keyof import("node_modules/three-stdlib/controls/StandardControlsEventMap").StandardControlsEventMap, OrbitControls>>;
|
|
22
22
|
started: import("@angular/core").OutputEmitterRef<THREE.Event<string, unknown>>;
|
|
23
23
|
ended: import("@angular/core").OutputEmitterRef<THREE.Event<string, unknown>>;
|
|
@@ -11,7 +11,7 @@ export type NgtsTrackballControlsOptions = Omit<NgtOverwrite<NgtThreeElement<typ
|
|
|
11
11
|
}>, 'attach' | 'addEventListener' | 'removeEventListener' | 'parameters' | '___ngt_args__'>;
|
|
12
12
|
export declare class NgtsTrackballControls {
|
|
13
13
|
options: import("@angular/core").InputSignalWithTransform<NgtsTrackballControlsOptions, "" | Partial<NgtsTrackballControlsOptions>>;
|
|
14
|
-
protected parameters: import("@angular/core").Signal<Omit<NgtsTrackballControlsOptions, "
|
|
14
|
+
protected parameters: import("@angular/core").Signal<Omit<NgtsTrackballControlsOptions, "camera" | "makeDefault" | "regress" | "domElement">>;
|
|
15
15
|
changed: import("@angular/core").OutputEmitterRef<THREE.Event<string, unknown>>;
|
|
16
16
|
started: import("@angular/core").OutputEmitterRef<THREE.Event<string, unknown>>;
|
|
17
17
|
ended: import("@angular/core").OutputEmitterRef<THREE.Event<string, unknown>>;
|