| 11 | using namespace MR; |
| 12 | |
| 13 | EMSCRIPTEN_BINDINGS( meshlib_mesh_collide ) |
| 14 | { |
| 15 | emscripten::function( "isInside", +[]( std::shared_ptr<Mesh> a, std::shared_ptr<Mesh> b ) |
| 16 | { |
| 17 | return isInside( *a, *b ); |
| 18 | } ); |
| 19 | } |
nothing calls this directly
no test coverage detected