Socket
Socket
Sign inDemoInstall

@types/d3-polygon

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/d3-polygon - npm Package Compare versions

Comparing version 2.0.0 to 3.0.0

4

d3-polygon/index.d.ts

@@ -1,2 +0,2 @@

// Type definitions for D3JS d3-polygon module 2.0
// Type definitions for D3JS d3-polygon module 3.0
// Project: https://github.com/d3/d3-polygon/, https://d3js.org/d3-polygon

@@ -9,3 +9,3 @@ // Definitions by: Tom Wanzek <https://github.com/tomwanzek>

// Last module patch version validated against: 2.0.0
// Last module patch version validated against: 3.0.1

@@ -12,0 +12,0 @@ /**

{
"name": "@types/d3-polygon",
"version": "2.0.0",
"version": "3.0.0",
"description": "TypeScript definitions for D3JS d3-polygon module",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-polygon",
"license": "MIT",

@@ -37,4 +38,4 @@ "contributors": [

"dependencies": {},
"typesPublisherContentHash": "4a02cb931240583f233d3b5bad187adc21689f18632ec9068b4be99be7070499",
"typeScriptVersion": "3.2"
"typesPublisherContentHash": "3d984ac0de983da631553c91a45708daac002aa029f058c14a3239e0c6929a02",
"typeScriptVersion": "3.6"
}

@@ -9,5 +9,58 @@ # Installation

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-polygon.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-polygon/index.d.ts)
````ts
// Type definitions for D3JS d3-polygon module 3.0
// Project: https://github.com/d3/d3-polygon/, https://d3js.org/d3-polygon
// Definitions by: Tom Wanzek <https://github.com/tomwanzek>
// Alex Ford <https://github.com/gustavderdrache>
// Boris Yankov <https://github.com/borisyankov>
// Nathan Bierema <https://github.com/Methuselah96>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// Last module patch version validated against: 3.0.1
/**
* Returns the signed area of the specified polygon. If the vertices of the polygon are in counterclockwise order
* (assuming a coordinate system where the origin <0,0> is in the top-left corner), the returned area is positive;
* otherwise it is negative, or zero.
*
* @param polygon Array of coordinates <x0, y0>, <x1, y1> and so on.
*/
export function polygonArea(polygon: Array<[number, number]>): number;
/**
* Returns the centroid of the specified polygon.
*
* @param polygon Array of coordinates <x0, y0>, <x1, y1> and so on.
*/
export function polygonCentroid(polygon: Array<[number, number]>): [number, number];
/**
* Returns the convex hull of the specified points using Andrew’s monotone chain algorithm.
* The returned hull is represented as an array containing a subset of the input points arranged in
* counterclockwise order. Returns null if points has fewer than three elements.
*
* @param points Array of coordinates <x0, y0>, <x1, y1> and so on.
*/
export function polygonHull(points: Array<[number, number]>): Array<[number, number]> | null;
/**
* Returns true if and only if the specified point is inside the specified polygon.
*
* @param polygon Array of coordinates <x0, y0>, <x1, y1> and so on.
* @param point Coordinates of point <x, y>.
*/
export function polygonContains(polygon: Array<[number, number]>, point: [number, number]): boolean;
/**
* Returns the length of the perimeter of the specified polygon.
*
* @param polygon Array of coordinates <x0, y0>, <x1, y1> and so on.
*/
export function polygonLength(polygon: Array<[number, number]>): number;
````
### Additional Details
* Last updated: Tue, 29 Sep 2020 22:54:47 GMT
* Last updated: Fri, 25 Jun 2021 14:01:31 GMT
* Dependencies: none

@@ -14,0 +67,0 @@ * Global values: none

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