Browse Source

Removed Vector*.isZero()

WestLangley 12 years ago
parent
commit
4667cc6f18
1 changed files with 1 additions and 5 deletions
  1. 1 5
      src/extras/geometries/ConvexGeometry.js

+ 1 - 5
src/extras/geometries/ConvexGeometry.js

@@ -129,11 +129,7 @@ THREE.ConvexGeometry = function( vertices ) {
 		ab.sub( va, vb );
 		cb.crossSelf( ab );
 
-		if ( !cb.isZero() ) {
-
-			cb.normalize(); 
-
-		}
+		cb.normalize();
 
 		return cb;