| 85 | } |
| 86 | |
| 87 | Expected<Mesh> loadASCIIStl( const std::filesystem::path& file, const MeshLoadSettings& settings ) |
| 88 | { |
| 89 | return MeshLoad::fromASCIIStl( file, settings ); |
| 90 | } |
| 91 | |
| 92 | Expected<Mesh> loadASCIIStl( std::istream& in, const MeshLoadSettings& settings ) |
| 93 | { |
nothing calls this directly
no test coverage detected