libigl v2.5.0
Loading...
Searching...
No Matches
is_intrinsic_delaunay.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2018 Alec Jacobson <alecjacobson@gmail.com>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8#ifndef IGL_IS_INTRINSIC_DELAUNAY_H
9#define IGL_IS_INTRINSIC_DELAUNAY_H
10#include "igl_inline.h"
11#include <Eigen/Core>
12#include <vector>
13namespace igl
14{
22 template <
23 typename Derivedl,
24 typename DerivedF,
25 typename DerivedD>
27 const Eigen::MatrixBase<Derivedl> & l,
28 const Eigen::MatrixBase<DerivedF> & F,
29 Eigen::PlainObjectBase<DerivedD> & D);
32 template <
33 typename Derivedl,
34 typename DerivedF,
35 typename uE2EType,
36 typename DerivedD>
38 const Eigen::MatrixBase<Derivedl> & l,
39 const Eigen::MatrixBase<DerivedF> & F,
40 const std::vector<std::vector<uE2EType> > & uE2E,
41 Eigen::PlainObjectBase<DerivedD> & D);
51 template <
52 typename Derivedl,
53 typename uE2EType,
54 typename Index>
56 const Eigen::MatrixBase<Derivedl> & l,
57 const std::vector<std::vector<uE2EType> > & uE2E,
58 const Index num_faces,
59 const Index uei);
60
61}
62#ifndef IGL_STATIC_LIBRARY
63#include "is_intrinsic_delaunay.cpp"
64#endif
65#endif
66
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void 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.