#include "igl_inline.h"
#include <Eigen/Core>
#include <vector>
#include "per_corner_normals.cpp"
Go to the source code of this file.
|
| template<typename DerivedV , typename DerivedF , typename DerivedCN > |
| IGL_INLINE void | igl::per_corner_normals (const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const double corner_threshold, Eigen::PlainObjectBase< DerivedCN > &CN) |
| |
| template<typename DerivedV , typename DerivedF , typename DerivedFN , typename DerivedCN > |
| IGL_INLINE void | igl::per_corner_normals (const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedFN > &FN, const double corner_threshold, Eigen::PlainObjectBase< DerivedCN > &CN) |
| |
| template<typename DerivedV , typename DerivedF , typename DerivedFN , typename IndexType , typename DerivedCN > |
| IGL_INLINE void | igl::per_corner_normals (const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedFN > &FN, const std::vector< std::vector< IndexType > > &VF, const double corner_threshold, Eigen::PlainObjectBase< DerivedCN > &CN) |
| |