提交 a85d628f 编写于 作者: T Tristan Valcke

Remove unecessary semicolon, and fix comma by semicolon in for loop assignement in MarchingCubes

上级 b2925e52
......@@ -412,7 +412,7 @@ THREE.MarchingCubes = function ( resolution, material, enableUvs, enableColors )
}
};
}
this.begin = function () {
......@@ -493,8 +493,8 @@ THREE.MarchingCubes = function ( resolution, material, enableUvs, enableColors )
for ( z = min_z; z < max_z; z ++ ) {
z_offset = this.size2 * z,
fz = z / this.size - ballz,
z_offset = this.size2 * z;
fz = z / this.size - ballz;
fz2 = fz * fz;
for ( y = min_y; y < max_y; y ++ ) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册