modeling/src/geometries/geom2/fromPoints.js

  1. const vec2 = require('../../maths/vec2')
  2. const create = require('./create')
  3. /**
  4. * Create a new 2D geometry from the given points.
  5. * The direction (rotation) of the points is not relevant,
  6. * as the points can define a convex or a concave polygon.
  7. * The geometry must not self intersect, i.e. the sides cannot cross.
  8. * @param {Array} points - list of points in 2D space
  9. * @returns {geom2} a new geometry
  10. * @alias module:modeling/geometries/geom2.fromPoints
  11. */
  12. const fromPoints = (points) => {
  13. if (!Array.isArray(points)) {
  14. throw new Error('the given points must be an array')
  15. }
  16. let length = points.length
  17. if (length < 3) {
  18. throw new Error('the given points must define a closed geometry with three or more points')
  19. }
  20. // adjust length if the given points are closed by the same point
  21. if (vec2.equals(points[0], points[length - 1])) --length
  22. const sides = []
  23. let prevpoint = points[length - 1]
  24. for (let i = 0; i < length; i++) {
  25. const point = points[i]
  26. sides.push([vec2.clone(prevpoint), vec2.clone(point)])
  27. prevpoint = point
  28. }
  29. return create(sides)
  30. }
  31. module.exports = fromPoints