kld-affine
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -35,3 +35,3 @@ /** | ||
*/ | ||
Matrix2D.prototype.multiply = fuction(that) { | ||
Matrix2D.prototype.multiply = function(that) { | ||
return new Matrix2D( | ||
@@ -38,0 +38,0 @@ this.a * that.a + this.c * that.b, |
{ | ||
"name": "kld-affine", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A collection of classes used in affine geometry", | ||
@@ -5,0 +5,0 @@ "author": { |
var Matrix2D = require('./../lib/Matrix2D'); | ||
exports.newMatrix = function(beforeExit, assert) { | ||
var m = new Matrix2D(); | ||
assert.equal(m.toString(), "matrix(1,0,0,1,0,0)"); | ||
}; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17842
739