#include "igl_inline.h"
#include <Eigen/Core>
#include <vector>
#include "is_intrinsic_delaunay.cpp"
Go to the source code of this file.
|
| template<typename Derivedl, typename DerivedF, typename DerivedD> |
| void | igl::is_intrinsic_delaunay (const Eigen::MatrixBase< Derivedl > &l, const Eigen::MatrixBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedD > &D) |
| | Determine if each edge in the mesh (V,F) is Delaunay.
|
| template<typename Derivedl, typename DerivedF, typename uE2EType, typename DerivedD> |
| void | igl::is_intrinsic_delaunay (const Eigen::MatrixBase< Derivedl > &l, const Eigen::MatrixBase< DerivedF > &F, const std::vector< std::vector< uE2EType > > &uE2E, Eigen::PlainObjectBase< DerivedD > &D) |
| | This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
| template<typename Derivedl, typename uE2EType, typename Index> |
| bool | igl::is_intrinsic_delaunay (const Eigen::MatrixBase< Derivedl > &l, const std::vector< std::vector< uE2EType > > &uE2E, const Index num_faces, const Index uei) |
| | Determine whether a single edge is Delaunay using a provided (extrinsic) incirle test.
|