| 115 | } |
| 116 | |
| 117 | Expected<Mesh> loadMesh( const std::filesystem::path& file, const MeshLoadSettings& settings ) |
| 118 | { |
| 119 | return MeshLoad::fromAnySupportedFormat( file, settings ); |
| 120 | } |
| 121 | |
| 122 | Expected<Mesh> loadMesh( std::istream& in, const std::string& extension, const MeshLoadSettings& settings ) |
| 123 | { |
nothing calls this directly
no test coverage detected