Socket
Socket
Sign inDemoInstall

kld-affine

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kld-affine - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

2

lib/Matrix2D.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc