提交 5dd5065a 编写于 作者: B Ben Houston

fix bug in conversion of BufferedGeometry to Geometry.

上级 e5206270
......@@ -312,7 +312,7 @@ THREE.Geometry.prototype = {
} else {
for ( var i = 0; i < vertices.length / 3; i += 3 ) {
for ( var i = 0; i < vertices.length; i += 3 ) {
addFace( i, i + 1, i + 2 );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册