Socket
Book a DemoInstallSign in
Socket

poly-to-pslg

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

poly-to-pslg

Convert a polygon into a planar straight line graph

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

poly-to-pslg

Converts a polygon into a planar straight line graph.

Example

var poly2pslg = require('poly-to-pslg')

var polygon = [
  [[-2, 2], [2, 2], [2, -2], [-2,-2]],
  [[-1, 1], [1, 1], [1, -1], [-1,-1]]
]

var pslg = poly2pslg(polygon)

console.log(pslg)

Output

{ points:
   [ [ -2, 2 ],
     [ 2, 2 ],
     [ 2, -2 ],
     [ -2, -2 ],
     [ -1, 1 ],
     [ 1, 1 ],
     [ 1, -1 ],
     [ -1, -1 ] ],
  edges:
   [ [ 0, 1 ],
     [ 1, 2 ],
     [ 2, 3 ],
     [ 3, 0 ],
     [ 4, 5 ],
     [ 5, 6 ],
     [ 6, 7 ],
     [ 7, 4 ] ] }

Install

npm i poly-to-pslg

API

var graph = require('poly-to-pslg')(loops[, options])

Converts a polygon into a planar straight line graph.

  • loops is an array of loops determining the vertices of the polygon. If only one loop is specified, this is inferred automatically.
  • options is an object storing some optional parameters
    • options.clean if this flag is set to true, then clean up the resulting graph using clean-pslg. (Default true)
    • options.nested if this flag is set to true, then assume the polygon is an array of loops. If false, then suppose that the polygon is just one array.

Returns An object with two properties

  • points are the vertex coordinate of the pslg
  • edges are the edges of the pslg

License

(c) 2015 Mikola Lysenko. MIT License

Keywords

polygon

FAQs

Package last updated on 04 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts