|
@@ -187,8 +187,7 @@ THREE.BufferGeometry.prototype = {
|
|
this.attributes[ "normal" ] = {
|
|
this.attributes[ "normal" ] = {
|
|
|
|
|
|
itemSize: 3,
|
|
itemSize: 3,
|
|
- array: new Float32Array( nVertexElements ),
|
|
|
|
- numItems: nVertexElements
|
|
|
|
|
|
+ array: new Float32Array( nVertexElements )
|
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|
@@ -371,8 +370,7 @@ THREE.BufferGeometry.prototype = {
|
|
this.attributes[ "tangent" ] = {
|
|
this.attributes[ "tangent" ] = {
|
|
|
|
|
|
itemSize: 4,
|
|
itemSize: 4,
|
|
- array: new Float32Array( nTangentElements ),
|
|
|
|
- numItems: nTangentElements
|
|
|
|
|
|
+ array: new Float32Array( nTangentElements )
|
|
|
|
|
|
};
|
|
};
|
|
|
|
|