UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

14 lines (12 loc) 432 B
/** * Produces an array of edges from the given slice. * The returned array should not be modified as the data is shared with the slice. * @param {slice} slice - the slice * @returns {Array} an array of edges, each edge contains an array of two points (3D) * @alias module:modeling/extrusions/slice.toEdges * * @example * let sharededges = toEdges(slice) */ const toEdges = (slice) => slice.edges module.exports = toEdges