===== Shape Operations ===== ==== Boolean Operations ==== The 'booleans' are accessed through the modeling API using the following: const { union, intersect, scission, subtract } = require('@jscad/modeling').booleans ^ Operation ^ Notes ^ | const newshape = intersect(oldshape0, oldshape1) | [[https://www.openjscad.xyz/docs/module-modeling_booleans.html#.intersect | API]] | | const newshape = subtract(oldshape0, oldshape1) | [[https://www.openjscad.xyz/docs/module-modeling_booleans.html#.subtract | API]] | | const newshape = union(oldshape0, oldshape1) | [[https://www.openjscad.xyz/docs/module-modeling_booleans.html#.union | API]] | | const newshapes = scission(bigshape) | [[https://www.openjscad.xyz/docs/module-modeling_booleans.html#.scission | API]] | ==== Hull Operations === The 'hulls' are accessed through the modeling API using the following: const { hull, hullChain } = require('@jscad/modeling').hulls ^ Operation ^ Notes ^ | const newshape = hull(oldshape0, oldshape1) | [[https://www.openjscad.xyz/docs/module-modeling_hulls.html#.hull | API]] | | const newshape = hullChain(oldshape0, oldshape1) | [[https://www.openjscad.xyz/docs/module-modeling_hulls.html#.hullChain | API]] |