npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

star-polygon

0.0.0

@mikolalysenko

npmRepoSnykSocket
Downloads:7
$ npm install star-polygon
DailyWeeklyMonthlyYearly

star-polygon

Generates a regular star polygon.

Example

console.log(require("star-polygon")(5, 2))

//Prints:
//
//  [[0,2], [2,4], [4,1], [1,3], [3,0]]
//

Install

npm install star-polygon

require("star-polygon")(n, k)

Generates a star polygon.

  • n is the number of vertices
  • k is the step size between vertices

Returns A list of edges

Credits

(c) 2013 Mikola Lysenko. MIT License