Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Unified Diff: samples/o3djs/debug.js

Issue 155401: Shadow Map Sample (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/MANIFEST ('k') | samples/shadow-map.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3djs/debug.js
===================================================================
--- samples/o3djs/debug.js (revision 20998)
+++ samples/o3djs/debug.js (working copy)
@@ -263,6 +263,25 @@
};
/**
+ * Computes the number of vertices in this vertex info.
+ * @return {number} The number of vertices.
+ */
+o3djs.debug.VertexInfo.prototype.numVertices = function() {
+ return this.vertices.length / 3;
+};
+
+
+/**
+ * Given the number of a vertex returns the index in the array where
+ * the coordinates of that vertex vertexIndex.
+ * @param {number} vertexNumber The vertex number.
+ * @return {number} The index where that vertex begins.
+ */
+o3djs.debug.VertexInfo.prototype.vertexIndex = function(vertexNumber) {
+ return vertexNumber * 3;
+}
+
+/**
* Adds a vertex.
* @param {number} positionX The x position of the vertex.
* @param {number} positionY The y position of the vertex.
@@ -298,6 +317,7 @@
this.indices);
};
+
/**
* Reorients the vertex positions of this vertexInfo by the
* given matrix. In other words it multiplies each vertex by the
@@ -306,10 +326,6 @@
*/
o3djs.debug.VertexInfo.prototype.reorient = function(matrix) {
var math = o3djs.math;
- // Assume if it has a length it's not a Matrix4
- if (matrix.length) {
- matrix = math.matrix4.copy(matrix);
- }
var numVerts = this.numVertices();
for (var v = 0; v < numVerts; ++v) {
var index = this.vertexIndex(v);
« no previous file with comments | « samples/MANIFEST ('k') | samples/shadow-map.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698