Finds the boundary of a convex polytope formed by the intersection of halfspaces
npm install convex-boundary-3dconvex-boundary-3d
==================
Given a collection of 3D planes constructs the set of polygons representing their boundary.
npm install convex-boundary-3d
``javascript
var extractBoundary = require("convex-boundary-3d")
//Make a cube
var cube = extractBoundary([
[ 1, 0, 0, 1],
[-1, 0, 0, 1],
[ 0, 1, 0, 1],
[ 0,-1, 0, 1],
[ 0, 0, 1, 1],
[ 0, 0,-1, 1]
])
`
* planes` is a list of planes
Returns A list of polygons encoding the boundary of the planes