- Added TODO

- Minor tweaks
This commit is contained in:
Mr.doob
2010-09-21 06:59:06 +01:00
parent c88fa50a4c
commit 5ce7a10bbb
11 changed files with 102 additions and 61 deletions
+12 -2
View File
@@ -9,7 +9,11 @@ THREE.Geometry = function () {
this.faces = [];
this.uvs = [];
this.computeNormals = function () {
};
THREE.Geometry.prototype = {
computeNormals: function () {
var v, f, vA, vB, vC, cb, ab;
@@ -42,6 +46,12 @@ THREE.Geometry = function () {
}
};
},
toString: function () {
return 'THREE.Geometry ( vertices: ' + this.vertices + ', faces: ' + this.faces + ' )';
}
};