MVE - Multi-View Environment mve-devel
|
#include <fstream>
#include <iostream>
#include <iomanip>
#include <stdexcept>
#include <cstring>
#include <cerrno>
#include "math/vector.h"
#include "util/exception.h"
#include "mve/mesh_io_off.h"
Go to the source code of this file.
Namespaces | |
namespace | mve |
Multi-View Environment library. | |
namespace | mve::geom |
Geometric tools, loading and processing functions. | |
Functions | |
TriangleMesh::Ptr | mve::geom::load_off_mesh (std::string const &filename) |
Loads a triangle mesh from an OFF model file. | |
void | mve::geom::save_off_mesh (TriangleMesh::ConstPtr mesh, std::string const &filename) |
Saves a triangle mesh to an OFF model file. | |