UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

12 lines (11 loc) 380 B
/** * All shapes (primitives or the results of operations) can be expanded (or contracted.) * In all cases, the function returns the results, and never changes the original shapes. * @module modeling/expansions * @example * const { expand, offset } = require('@jscad/modeling').expansions */ module.exports = { expand: require('./expand'), offset: require('./offset') }