Skip to content

Commit

Permalink
Matrix build files.
Browse files Browse the repository at this point in the history
  • Loading branch information
tripp committed Dec 4, 2011
1 parent 3292eba commit bf4640f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions build/matrix/matrix-debug.js
Expand Up @@ -844,7 +844,7 @@ Matrix.prototype = {
*/
getDeterminant: function()
{
return Y.MatrixUtil.getDeterminant.apply(this, [this.getMatrixArray()]);
return Y.MatrixUtil.getDeterminant(this.getMatrixArray());
},

/**
Expand All @@ -855,7 +855,7 @@ Matrix.prototype = {
*/
inverse: function()
{
return Y.MatrixUtil.inverse.apply(this, [this.getMatrixArray()]);
return Y.MatrixUtil.inverse(this.getMatrixArray());
},

/**
Expand All @@ -866,7 +866,7 @@ Matrix.prototype = {
*/
transpose: function()
{
return Y.MatrixUtil.transpose.apply(this, [this]);
return Y.MatrixUtil.transpose(this.getMatrixArray());
},

/**
Expand All @@ -877,7 +877,7 @@ Matrix.prototype = {
*/
decompose: function()
{
return Y.MatrixUtil.decompose.apply(this, [this.getMatrixArray()]);
return Y.MatrixUtil.decompose(this.getMatrixArray());
}
};

Expand Down
2 changes: 1 addition & 1 deletion build/matrix/matrix-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build/matrix/matrix.js
Expand Up @@ -844,7 +844,7 @@ Matrix.prototype = {
*/
getDeterminant: function()
{
return Y.MatrixUtil.getDeterminant.apply(this, [this.getMatrixArray()]);
return Y.MatrixUtil.getDeterminant(this.getMatrixArray());
},

/**
Expand All @@ -855,7 +855,7 @@ Matrix.prototype = {
*/
inverse: function()
{
return Y.MatrixUtil.inverse.apply(this, [this.getMatrixArray()]);
return Y.MatrixUtil.inverse(this.getMatrixArray());
},

/**
Expand All @@ -866,7 +866,7 @@ Matrix.prototype = {
*/
transpose: function()
{
return Y.MatrixUtil.transpose.apply(this, [this]);
return Y.MatrixUtil.transpose(this.getMatrixArray());
},

/**
Expand All @@ -877,7 +877,7 @@ Matrix.prototype = {
*/
decompose: function()
{
return Y.MatrixUtil.decompose.apply(this, [this.getMatrixArray()]);
return Y.MatrixUtil.decompose(this.getMatrixArray());
}
};

Expand Down

0 comments on commit bf4640f

Please sign in to comment.