Generates a regular star polygon.
console.log(require("star-polygon")(5, 2))
//Prints:
//
// [[0,2], [2,4], [4,1], [1,3], [3,0]]
//
npm install star-polygon
require("star-polygon")(n, k)Generates a star polygon.
n is the number of verticesk is the step size between verticesReturns A list of edges
(c) 2013 Mikola Lysenko. MIT License