| 20 | |
| 21 | namespace CGALBooleanEngineHelper { |
| 22 | void assert_mesh_is_closed(const Polyhedron& P) { |
| 23 | if (!P.is_closed()) { |
| 24 | throw RuntimeError("Mesh not closed. Boolean requires closed mesh as input."); |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | using namespace CGALBooleanEngineHelper; |
no test coverage detected