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