提交 71d192e9 编写于 作者: T Trevor Blackwell

Fix indenting and copy/paste bug

上级 2ca4891a
......@@ -851,7 +851,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
if ( ele[ '#text' ] ) {
var content = ele[ '#text' ].split( /s+/ ).filter( function ( el ) {
var content = ele[ '#text' ].split( /\s+/ ).filter( function ( el ) {
if ( el !== '' ) return el;
......@@ -872,9 +872,9 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
var txt = new Float32Array( content );
} else if ( ele.attributes.type == 'Int32' ) {
} else if ( ele.attributes.type == 'Int32' ) {
var txt = new Int32Array( content );
var txt = new Int32Array( content );
} else if ( ele.attributes.type === 'Int64' ) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册