| 75 | } |
| 76 | |
| 77 | Expected<Mesh> loadBinaryStl( const std::filesystem::path& file, const MeshLoadSettings& settings ) |
| 78 | { |
| 79 | return MeshLoad::fromBinaryStl( file, settings ); |
| 80 | } |
| 81 | |
| 82 | Expected<Mesh> loadBinaryStl( std::istream& in, const MeshLoadSettings& settings ) |
| 83 | { |
nothing calls this directly
no test coverage detected