Browse Source

Return geometry after calling applyMatrix()

Return geometry (`this`) after calling `applyMatrix():`
Wilt 9 years ago
parent
commit
a266e460f4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/core/Geometry.js

+ 2 - 0
src/core/Geometry.js

@@ -87,6 +87,8 @@ THREE.Geometry.prototype = {
 		this.verticesNeedUpdate = true;
 		this.normalsNeedUpdate = true;
 
+		return this;
+
 	},
 
 	rotateX: function () {