|
| MRIOEXTRAS_API Expected< Mesh > | fromCtm (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads from .ctm file
|
| |
| MRIOEXTRAS_API Expected< Mesh > | fromCtm (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRIOEXTRAS_API Expected< Mesh > | fromStep (const std::filesystem::path &path, const MeshLoadSettings &settings={}) |
| | load mesh data from STEP file using OpenCASCADE
|
| |
| MRIOEXTRAS_API Expected< Mesh > | fromStep (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRIOEXTRAS_API Expected< std::shared_ptr< Object > > | fromSceneStepFile (const std::filesystem::path &path, const MeshLoadSettings &settings={}) |
| | load scene from STEP file using OpenCASCADE
|
| |
| MRIOEXTRAS_API Expected< std::shared_ptr< Object > > | fromSceneStepFile (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< Mesh > | fromMrmesh (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in internal MeshLib format
|
| |
| MRMESH_API Expected< Mesh > | fromMrmesh (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< Mesh > | fromOff (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in .OFF format
|
| |
| MRMESH_API Expected< Mesh > | fromOff (std::istream &in, const MeshLoadSettings &settings={}) |
| | loads mesh from stream in .OFF format
|
| |
| MRMESH_API Expected< Mesh > | fromObj (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in .OBJ format
|
| |
| MRMESH_API Expected< Mesh > | fromObj (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< Mesh > | fromAnyStl (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in any .STL format: both binary and ASCII
|
| |
| MRMESH_API Expected< Mesh > | fromAnyStl (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< Mesh > | fromBinaryStl (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in binary .STL format
|
| |
| MRMESH_API Expected< Mesh > | fromBinaryStl (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< Mesh > | fromASCIIStl (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in textual .STL format
|
| |
| MRMESH_API Expected< Mesh > | fromASCIIStl (std::istream &in, const MeshLoadSettings &settings={}) |
| | loads mesh from stream in textual .STL format
|
| |
| MRMESH_API Expected< Mesh > | fromPly (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in .PLY format;
|
| |
| MRMESH_API Expected< Mesh > | fromPly (std::istream &in, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< Mesh > | fromDxf (const std::filesystem::path &path, const MeshLoadSettings &settings={}) |
| | loads mesh from file in .DXF format;
|
| |
| MRMESH_API Expected< Mesh > | fromDxf (std::istream &in, const MeshLoadSettings &settings={}) |
| | loads mesh from stream in .DXF format;
|
| |
| MRMESH_API Expected< Mesh > | fromAnySupportedFormat (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| | loads mesh from file in the format detected from file extension
|
| |
| MRMESH_API Expected< Mesh > | fromAnySupportedFormat (std::istream &in, const std::string &extension, const MeshLoadSettings &settings={}) |
| |
| MRMESH_API Expected< std::vector< NamedMesh > > | fromSceneObjFile (const std::filesystem::path &file, bool combineAllObjects, const ObjLoadSettings &settings={}) |
| | loads meshes from .obj file
|
| |
| MRMESH_API Expected< std::vector< NamedMesh > > | fromSceneObjFile (std::istream &in, bool combineAllObjects, const std::filesystem::path &dir, const ObjLoadSettings &settings={}) |
| |
| MRMESH_API Expected< std::vector< NamedMesh > > | fromSceneObjFile (const char *data, size_t size, bool combineAllObjects, const std::filesystem::path &dir, const ObjLoadSettings &settings={}) |
| |
| MRMESH_API Expected< LoadedObjects > | loadObjectFromObj (const std::filesystem::path &file, const ProgressCallback &cb={}) |
| | reads all objects from .OBJ file
|
| |