Browse Source

Clean up.

Mr.doob 8 years ago
parent
commit
0a150665ce
2 changed files with 4 additions and 4 deletions
  1. 3 3
      examples/misc_sound.html
  2. 1 1
      src/objects/Mesh.js

+ 3 - 3
examples/misc_sound.html

@@ -9,15 +9,15 @@
 				background-color: #000000;
 				background-color: #000000;
 				margin: 0px;
 				margin: 0px;
 				overflow: hidden;
 				overflow: hidden;
+
 				font-family:Monospace;
 				font-family:Monospace;
 				font-size:13px;
 				font-size:13px;
-				text-align:center;
 				font-weight: bold;
 				font-weight: bold;
-				text-align:center;
+				text-align: center;
 			}
 			}
 
 
 			a {
 			a {
-				color:#0078ff;
+				color: #0078ff;
 			}
 			}
 
 
 			#info {
 			#info {

+ 1 - 1
src/objects/Mesh.js

@@ -159,7 +159,7 @@ Mesh.prototype = Object.assign( Object.create( Object3D.prototype ), {
 					uvB.fromBufferAttribute( uv, b );
 					uvB.fromBufferAttribute( uv, b );
 					uvC.fromBufferAttribute( uv, c );
 					uvC.fromBufferAttribute( uv, c );
 
 
-					intersection.uv = uvIntersection( intersectionPoint,  vA, vB, vC, uvA, uvB, uvC );
+					intersection.uv = uvIntersection( intersectionPoint, vA, vB, vC, uvA, uvB, uvC );
 
 
 				}
 				}