Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eturnity/eturnity_maths

Package Overview
Dependencies
Maintainers
4
Versions
427
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eturnity/eturnity_maths - npm Package Compare versions

Comparing version 1.0.11-EPDM-7264 to 1.0.11-qa-6.27.0-0

2

package.json
{
"name": "@eturnity/eturnity_maths",
"version": "1.0.11-EPDM-7264",
"version": "1.0.11-qa-6.27.0-0",
"author": "Eturnity Team",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -304,2 +304,11 @@ import {

export function polygonsHaveSame3DOutline(outline1, outline2) {
let sameLength = outline1.length == outline2.length
return (
sameLength &&
outline1.every((p) => outline2.find((v) => v.x == p.x && v.y == p.y)) &&
outline2.every((p) => outline1.find((v) => v.x == p.x && v.y == p.y))
)
}
export function isOnBorderOfPolygon(point, vs) {

@@ -306,0 +315,0 @@ let inside = false

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