new simpler names More...
Namespaces | |
| namespace | MR::MeshLoad |
| compatibility names | |
Functions | |
| Expected< Mesh > | MR::loadMrmesh (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in internal MeshLib format | |
| Expected< Mesh > | MR::loadMrmesh (std::istream &in, const MeshLoadSettings &settings={}) |
| Expected< Mesh > | MR::loadOff (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in .OFF format | |
| Expected< Mesh > | MR::loadOff (std::istream &in, const MeshLoadSettings &settings={}) |
| loads mesh from stream in .OFF format | |
| Expected< Mesh > | MR::loadObj (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in .OBJ format | |
| Expected< Mesh > | MR::loadObj (std::istream &in, const MeshLoadSettings &settings={}) |
| Expected< Mesh > | MR::loadStl (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in any .STL format: both binary and ASCII | |
| Expected< Mesh > | MR::loadStl (std::istream &in, const MeshLoadSettings &settings={}) |
| Expected< Mesh > | MR::loadBinaryStl (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in binary .STL format | |
| Expected< Mesh > | MR::loadBinaryStl (std::istream &in, const MeshLoadSettings &settings={}) |
| Expected< Mesh > | MR::loadASCIIStl (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in textual .STL format | |
| Expected< Mesh > | MR::loadASCIIStl (std::istream &in, const MeshLoadSettings &settings={}) |
| loads mesh from stream in textual .STL format | |
| Expected< Mesh > | MR::loadPly (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in .PLY format; | |
| Expected< Mesh > | MR::loadPly (std::istream &in, const MeshLoadSettings &settings={}) |
| Expected< Mesh > | MR::loadDxf (const std::filesystem::path &path, const MeshLoadSettings &settings={}) |
| loads mesh from file in .DXF format; | |
| Expected< Mesh > | MR::loadDxf (std::istream &in, const MeshLoadSettings &settings={}) |
| loads mesh from stream in .DXF format; | |
| Expected< Mesh > | MR::loadMesh (const std::filesystem::path &file, const MeshLoadSettings &settings={}) |
| loads mesh from file in the format detected from file extension | |
| Expected< Mesh > | MR::loadMesh (std::istream &in, const std::string &extension, const MeshLoadSettings &settings={}) |
new simpler names
| Expected< Mesh > MR::loadASCIIStl | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in textual .STL format
| Expected< Mesh > MR::loadASCIIStl | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in textual .STL format
| Expected< Mesh > MR::loadBinaryStl | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in binary .STL format
| Expected< Mesh > MR::loadBinaryStl | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in binary .STL format; important on Windows: in stream must be open in binary mode
| Expected< Mesh > MR::loadDxf | ( | const std::filesystem::path & | path, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in .DXF format;
| Expected< Mesh > MR::loadDxf | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in .DXF format;
| Expected< Mesh > MR::loadMesh | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in the format detected from file extension
| Expected< Mesh > MR::loadMesh | ( | std::istream & | in, |
| const std::string & | extension, | ||
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in the format detected from given extension-string (*.ext); important on Windows: in stream must be open in binary mode
| Expected< Mesh > MR::loadMrmesh | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in internal MeshLib format
| Expected< Mesh > MR::loadMrmesh | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in internal MeshLib format; important on Windows: in stream must be open in binary mode
| Expected< Mesh > MR::loadObj | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in .OBJ format
| Expected< Mesh > MR::loadObj | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in .OBJ format; important on Windows: in stream must be open in binary mode
| Expected< Mesh > MR::loadOff | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in .OFF format
| Expected< Mesh > MR::loadOff | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in .OFF format
| Expected< Mesh > MR::loadPly | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in .PLY format;
| Expected< Mesh > MR::loadPly | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in .PLY format; important on Windows: in stream must be open in binary mode
| Expected< Mesh > MR::loadStl | ( | const std::filesystem::path & | file, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from file in any .STL format: both binary and ASCII
| Expected< Mesh > MR::loadStl | ( | std::istream & | in, |
| const MeshLoadSettings & | settings = {} ) |
#include <MRMesh/MRMeshLoad.h>
loads mesh from stream in any .STL format: both binary and ASCII; important on Windows: in stream must be open in binary mode