#include "igl_inline.h"
#include <Eigen/Core>
#include <string>
#include <vector>
#include <cstdio>
#include "readMESH.cpp"
Go to the source code of this file.
|
template<typename DerivedV , typename DerivedF , typename DerivedT > |
bool | igl::readMESH (const std::string mesh_file_name, Eigen::PlainObjectBase< DerivedV > &V, Eigen::PlainObjectBase< DerivedT > &T, Eigen::PlainObjectBase< DerivedF > &F) |
| Load a tetrahedral volume mesh from a .mesh file.
|
|
template<typename Scalar , typename Index > |
bool | igl::readMESH (const std::string mesh_file_name, std::vector< std::vector< Scalar > > &V, std::vector< std::vector< Index > > &T, std::vector< std::vector< Index > > &F) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
template<typename DerivedV , typename DerivedF , typename DerivedT > |
bool | igl::readMESH (FILE *mesh_file, Eigen::PlainObjectBase< DerivedV > &V, Eigen::PlainObjectBase< DerivedT > &T, Eigen::PlainObjectBase< DerivedF > &F) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
template<typename Scalar , typename Index > |
bool | igl::readMESH (FILE *mesh_file, std::vector< std::vector< Scalar > > &V, std::vector< std::vector< Index > > &T, std::vector< std::vector< Index > > &F) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|