#include "igl_inline.h"
#include <Eigen/Core>
#include <string>
#include <vector>
#include <cstdio>
#include "readPLY.cpp"
Go to the source code of this file.
|
| template<typename Vtype , typename Ftype , typename Ntype , typename UVtype > |
| IGL_INLINE bool | igl::readPLY (const std::string filename, std::vector< std::vector< Vtype > > &V, std::vector< std::vector< Ftype > > &F, std::vector< std::vector< Ntype > > &N, std::vector< std::vector< UVtype > > &UV) |
| |
| template<typename Vtype , typename Ftype , typename Ntype , typename UVtype > |
| IGL_INLINE bool | igl::readPLY (FILE *ply_file, std::vector< std::vector< Vtype > > &V, std::vector< std::vector< Ftype > > &F, std::vector< std::vector< Ntype > > &N, std::vector< std::vector< UVtype > > &UV) |
| |
| template<typename DerivedV , typename DerivedF , typename DerivedN , typename DerivedUV > |
| IGL_INLINE bool | igl::readPLY (const std::string filename, Eigen::PlainObjectBase< DerivedV > &V, Eigen::PlainObjectBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedN > &N, Eigen::PlainObjectBase< DerivedUV > &UV) |
| |
| template<typename DerivedV , typename DerivedF > |
| IGL_INLINE bool | igl::readPLY (const std::string filename, Eigen::PlainObjectBase< DerivedV > &V, Eigen::PlainObjectBase< DerivedF > &F) |
| |