Sfoglia il codice sorgente

SVGLoader: Added missing character.

Mr.doob 7 anni fa
parent
commit
02e8bd02fd
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      examples/js/loaders/SVGLoader.js

+ 1 - 1
examples/js/loaders/SVGLoader.js

@@ -415,7 +415,7 @@ THREE.SVGLoader.prototype = {
 
 			var x = parseFloat( node.getAttribute( 'cx' ) );
 			var y = parseFloat( node.getAttribute( 'cy' ) );
-			var rx parseFloat( node.getAttribute( 'rx' ) );
+			var rx = parseFloat( node.getAttribute( 'rx' ) );
 			var ry = parseFloat( node.getAttribute( 'ry' ) );
 
 			var path = new THREE.ShapePath();