#include "igl_inline.h"
#include <Eigen/Core>
#include <string>
#include <cstdio>
#include <vector>
#include "readSTL.cpp"
Go to the source code of this file.
|
| template<typename DerivedV , typename DerivedF , typename DerivedN > |
| IGL_INLINE bool | igl::readSTL (const std::string &filename, Eigen::PlainObjectBase< DerivedV > &V, Eigen::PlainObjectBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedN > &N) |
| |
| template<typename TypeV , typename TypeF , typename TypeN > |
| IGL_INLINE bool | igl::readSTL (FILE *stl_file, std::vector< std::vector< TypeV > > &V, std::vector< std::vector< TypeF > > &F, std::vector< std::vector< TypeN > > &N) |
| |
| template<typename TypeV , typename TypeF , typename TypeN > |
| IGL_INLINE bool | igl::readSTL (const std::string &filename, std::vector< std::vector< TypeV > > &V, std::vector< std::vector< TypeF > > &F, std::vector< std::vector< TypeN > > &N) |
| |