three-stdlib 2.30.4 → 2.30.5
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/deprecated/Geometry.d.ts +1 -2
- package/package.json +1 -1
package/deprecated/Geometry.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
Sphere,
|
|
8
8
|
Matrix4,
|
|
9
9
|
BufferGeometry,
|
|
10
|
-
Matrix,
|
|
11
10
|
Mesh,
|
|
12
11
|
Bone,
|
|
13
12
|
AnimationClip,
|
|
@@ -232,7 +231,7 @@ export class Geometry extends EventDispatcher {
|
|
|
232
231
|
*/
|
|
233
232
|
computeBoundingSphere(): void
|
|
234
233
|
|
|
235
|
-
merge(geometry: Geometry, matrix?:
|
|
234
|
+
merge(geometry: Geometry, matrix?: Matrix4, materialIndexOffset?: number): void
|
|
236
235
|
|
|
237
236
|
mergeMesh(mesh: Mesh): void
|
|
238
237
|
|