From efa5f73344d600f36eea9ae9dc10d1139b9406b4 Mon Sep 17 00:00:00 2001 From: Helena Date: Mon, 11 May 2015 22:18:17 -0300 Subject: [PATCH] Remove spaces and fix identation --- App/matrix.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/App/matrix.js b/App/matrix.js index 3439404..95ca51a 100644 --- a/App/matrix.js +++ b/App/matrix.js @@ -37,7 +37,6 @@ function invert4x4 (matrix) { return result; } -// not working! function multMatrixVec(matrix, vector) { var result = []; @@ -53,8 +52,6 @@ function multMatrixVec(matrix, vector) { sum = 0.0; for ( var j = 0; j < vector.length; j++ ) { sum += matrix[i][j] * vector[j]; - console.log(matrix[i][j] * vector[j]); - console.log("sum " + j + " " + sum); } result.push( sum ); }