diff --git a/src/core/BufferAttribute.js b/src/core/BufferAttribute.js index afb40df574a341..a0cd760c8030bf 100644 --- a/src/core/BufferAttribute.js +++ b/src/core/BufferAttribute.js @@ -2,7 +2,6 @@ import { Vector4 } from '../math/Vector4.js'; import { Vector3 } from '../math/Vector3.js'; import { Vector2 } from '../math/Vector2.js'; import { Color } from '../math/Color.js'; -import { _Math } from '../math/Math.js'; /** * @author mrdoob / http://mrdoob.com/ @@ -16,7 +15,6 @@ function BufferAttribute( array, itemSize, normalized ) { } - this.uuid = _Math.generateUUID(); this.name = ''; this.array = array; diff --git a/src/core/InterleavedBuffer.js b/src/core/InterleavedBuffer.js index 2ce4fed46e9c0f..1e28d6e72c3fdf 100644 --- a/src/core/InterleavedBuffer.js +++ b/src/core/InterleavedBuffer.js @@ -1,4 +1,3 @@ -import { _Math } from '../math/Math.js'; /** * @author benaadams / https://twitter.com/ben_a_adams @@ -6,8 +5,6 @@ import { _Math } from '../math/Math.js'; function InterleavedBuffer( array, stride ) { - this.uuid = _Math.generateUUID(); - this.array = array; this.stride = stride; this.count = array !== undefined ? array.length / stride : 0; diff --git a/src/core/InterleavedBufferAttribute.js b/src/core/InterleavedBufferAttribute.js index 5822722911622d..3cfefca189b71a 100644 --- a/src/core/InterleavedBufferAttribute.js +++ b/src/core/InterleavedBufferAttribute.js @@ -1,4 +1,3 @@ -import { _Math } from '../math/Math.js'; /** * @author benaadams / https://twitter.com/ben_a_adams @@ -6,8 +5,6 @@ import { _Math } from '../math/Math.js'; function InterleavedBufferAttribute( interleavedBuffer, itemSize, offset, normalized ) { - this.uuid = _Math.generateUUID(); - this.data = interleavedBuffer; this.itemSize = itemSize; this.offset = offset;