modeling/src/operations/hulls/index.js

  1. /**
  2. * All shapes (primitives or the results of operations) can be passed to hull functions
  3. * to determine the convex hull of all points.
  4. * In all cases, the function returns the results, and never changes the original shapes.
  5. * @module modeling/hulls
  6. * @example
  7. * const { hull, hullChain } = require('@jscad/modeling').hulls
  8. */
  9. module.exports = {
  10. hull: require('./hull'),
  11. hullChain: require('./hullChain')
  12. }