UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

26 lines (22 loc) 546 B
const vec3 = require('../../maths/vec3') const create = require('./create') /** * Create a polygon from the given points. * * @param {Array} points - list of points (3D) * @returns {poly3} a new polygon * @alias module:modeling/geometries/poly3.fromPoints * * @example * const points = [ * [0, 0, 0], * [0, 10, 0], * [0, 10, 10] * ] * const polygon = fromPoints(points) */ const fromPoints = (points) => { const vertices = points.map((point) => vec3.clone(point)) return create(vertices) } module.exports = fromPoints