| 1 | // Constructive Solid Geometry (CSG) is a modeling technique that uses Boolean |
| 2 | // operations like union and intersection to combine 3D solids. This library |
| 3 | // implements CSG operations on meshes elegantly and concisely using BSP trees, |
| 4 | // and is meant to serve as an easily understandable implementation of the |