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

@mathigon/euclid

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mathigon/euclid - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

1

dist/fermat.cjs.js

@@ -942,2 +942,3 @@ 'use strict';

}
/** Creates the smallest rectangle containing all given points. */
static aroundPoints(...points) {

@@ -944,0 +945,0 @@ const xs = points.map(p => p.x);

@@ -938,2 +938,3 @@ import { mod, nearlyEquals, clamp, roundTo, square, lerp, isBetween, subsets, quadratic } from '@mathigon/fermat';

}
/** Creates the smallest rectangle containing all given points. */
static aroundPoints(...points) {

@@ -940,0 +941,0 @@ const xs = points.map(p => p.x);

4

package.json
{
"name": "@mathigon/euclid",
"version": "0.6.0",
"version": "0.6.1",
"description": "Euclidean geometry classes and tools for JavaScript.",

@@ -31,3 +31,3 @@ "keywords": [

"@mathigon/core": "^0.5.2",
"@mathigon/fermat": "^0.5.2"
"@mathigon/fermat": "^0.6.0"
},

@@ -34,0 +34,0 @@ "devDependencies": {

@@ -43,3 +43,3 @@ # Euclid.ts

```js
import {Complex, gcd} from '@mathigon/euclid'
import {Point, Line} from '@mathigon/euclid'
```

@@ -46,0 +46,0 @@

@@ -20,2 +20,3 @@ // =============================================================================

/** Creates the smallest rectangle containing all given points. */
static aroundPoints(...points: Point[]) {

@@ -22,0 +23,0 @@ const xs = points.map(p => p.x);

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