Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@leafer/math

Package Overview
Dependencies
Maintainers
1
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leafer/math - npm Package Compare versions

Comparing version
1.0.0-beta.9
to
1.0.0-beta.10
+2
-2
package.json
{
"name": "@leafer/math",
"version": "1.0.0-beta.9",
"version": "1.0.0-beta.10",
"description": "@leafer/math",

@@ -22,4 +22,4 @@ "author": "Chao (Leafer) Wan",

"devDependencies": {
"@leafer/interface": "1.0.0-beta.9"
"@leafer/interface": "1.0.0-beta.10"
}
}

@@ -10,2 +10,3 @@ import { INumberMap } from '@leafer/interface'

CNAVAS: 'canvas',
IMAGE: 'image',

@@ -12,0 +13,0 @@ types: {} as INumberMap,

@@ -52,5 +52,5 @@ import { IMatrix, IMatrixData, IPointData, IMatrixDecompositionData } from '@leafer/interface'

t.a *= x
t.b *= x
t.c *= y
t.d *= y
t.c *= x
t.b *= y
},

@@ -57,0 +57,0 @@

@@ -39,3 +39,3 @@ import { IPointData, IMatrixData, IRadiusPointData } from '@leafer/interface'

t.x = center.x + rx * cosR - ry * sinR
t.y = center.y + rx * sinR - ry * cosR
t.y = center.y + rx * sinR + ry * cosR
},

@@ -42,0 +42,0 @@