UNPKG

@thi.ng/geom

Version:

Functional, polymorphic API for 2D geometry types & SVG generation

7 lines (6 loc) 251 B
import { partition } from "@thi.ng/transducers/partition"; import { wrapSides } from "@thi.ng/transducers/wrap-sides"; const __edges = (vertices, closed = false) => partition(2, 1, closed ? wrapSides(vertices, 0, 1) : vertices); export { __edges };