libigl v2.5.0
Loading...
Searching...
No Matches
tet_tet_adjacency.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 Oded Stein <oded.stein@columbia.edu>
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
9#ifndef IGL_TET_TET_ADJACENCY_H
10#define IGL_TET_TET_ADJACENCY_H
11
12#include <Eigen/Core>
13
14#include "igl_inline.h"
15
16namespace igl
17{
28 template <typename DerivedT, typename DerivedTT, typename DerivedTTi>
30 const Eigen::MatrixBase<DerivedT>& T,
31 Eigen::PlainObjectBase<DerivedTT>& TT,
32 Eigen::PlainObjectBase<DerivedTTi>& TTi);
34 template <typename DerivedT, typename DerivedTT>
36 const Eigen::MatrixBase<DerivedT>& T,
37 Eigen::PlainObjectBase<DerivedTT>& TT);
38}
39
40#ifndef IGL_STATIC_LIBRARY
41# include "tet_tet_adjacency.cpp"
42#endif
43
44
45#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void tet_tet_adjacency(const Eigen::MatrixBase< DerivedT > &T, Eigen::PlainObjectBase< DerivedTT > &TT, Eigen::PlainObjectBase< DerivedTTi > &TTi)
Constructs the tet_tet adjacency matrix for a given tet mesh with tets T.