| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2014 Daniele Panozzo <[email protected]>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #ifndef IGL_TRIANGLE_TRIANGLE_ADJACENCY_H
- #define IGL_TRIANGLE_TRIANGLE_ADJACENCY_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <vector>
- namespace igl
- {
- /// Constructs the triangle-triangle adjacency matrix for a given
- /// mesh (V,F).
- ///
- /// @param[in] F #F by simplex_size list of mesh faces (must be triangles)
- /// @param[out] TT #F by #3 adjacent matrix, the element i,j is the id of the triangle
- /// adjacent to the j edge of triangle i
- /// @param[out] TTi #F by #3 adjacent matrix, the element i,j is the id of edge of the
- /// triangle TT(i,j) that is adjacent with triangle i
- /// \note the first edge of a triangle is [0,1] the second [1,2] and the third
- /// [2,3]. This convention is DIFFERENT from
- /// cotmatrix_entries.h/edge_lengths.h/etc. To fix this you could use:
- ///
- /// \code{cpp}
- /// // Fix mis-match convention
- /// {
- /// Eigen::PermutationMatrix<3,3> perm(3);
- /// perm.indices() = Eigen::Vector3i(1,2,0);
- /// TT = (TT*perm).eval();
- /// TTi = (TTi*perm).eval();
- /// for(int i=0;i<TTi.rows();i++)
- /// for(int j=0;j<TTi.cols();j++)
- /// TTi(i,j)=TTi(i,j)==-1?-1:(TTi(i,j)+3-1)%3;
- /// }
- /// \endcode
- template <typename DerivedF, typename DerivedTT, typename DerivedTTi>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedTT>& TT,
- Eigen::PlainObjectBase<DerivedTTi>& TTi);
- /// \overload
- template <typename DerivedF, typename DerivedTT>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedTT>& TT);
- /// Preprocessing for triangle_triangle_adjacency
- /// @param[in] F #F by simplex_size list of mesh faces (must be triangles)
- /// @param[in] TT #F by #3 adjacent matrix, the element i,j is the id of the triangle
- /// adjacent to the j edge of triangle i
- ///
- /// \fileinfo
- template <typename DerivedF, typename TTT_type>
- IGL_INLINE void triangle_triangle_adjacency_preprocess(
- const Eigen::MatrixBase<DerivedF>& F,
- std::vector<std::vector<TTT_type> >& TTT);
- /// Extract the face adjacencies for triangle_triangle_adjacency
- ///
- /// @param[in] F #F by simplex_size list of mesh faces (must be triangles)
- /// @param[in] TTT #F list of lists adjacent triangles
- /// @param[in] TT #F by #3 adjacentmatrix, the element i,j is the id
- /// of edge of the triangle TT(i,j) that is adjacent with triangle i
- ///
- /// \fileinfo
- template <typename DerivedF, typename TTT_type, typename DerivedTT>
- IGL_INLINE void triangle_triangle_adjacency_extractTT(
- const Eigen::MatrixBase<DerivedF>& F,
- std::vector<std::vector<TTT_type> >& TTT,
- Eigen::PlainObjectBase<DerivedTT>& TT);
- /// Extract the face adjacencies indices for triangle_triangle_adjacency
- ///
- /// @param[in] F #F by simplex_size list of mesh faces (must be triangles)
- /// @param[in] TTT #F list of lists adjacent triangles
- /// @param[out] TTi #F by #3 adjacent matrix, the element i,j is the id of edge of the
- /// triangle TT(i,j) that is adjacent with triangle i
- ///
- /// \fileinfo
- template <typename DerivedF, typename TTT_type, typename DerivedTTi>
- IGL_INLINE void triangle_triangle_adjacency_extractTTi(
- const Eigen::MatrixBase<DerivedF>& F,
- std::vector<std::vector<TTT_type> >& TTT,
- Eigen::PlainObjectBase<DerivedTTi>& TTi);
- /// Adjacency list version, which works with non-manifold meshes
- ///
- /// @param[in] F #F by 3 list of triangle indices
- /// @param[out] TT #F by 3 list of lists so that TT[i][c] --> {j,k,...} means that
- /// faces j and k etc. are edge-neighbors of face i on face i's edge
- /// opposite corner c
- /// @param[out] TTj #F list of lists so that TTj[i][c] --> {j,k,...} means that face
- /// TT[i][c][0] is an edge-neighbor of face i incident on the edge of face
- /// TT[i][c][0] opposite corner j, and TT[i][c][1] " corner k, etc.
- template <
- typename DerivedF,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedF> & F,
- std::vector<std::vector<std::vector<TTIndex> > > & TT,
- std::vector<std::vector<std::vector<TTiIndex> > > & TTi);
- /// \overload
- template < typename DerivedF, typename TTIndex>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedF> & F,
- std::vector<std::vector<std::vector<TTIndex> > > & TT);
- // @private
- // Wrapper with bool to choose whether to compute TTi (this prototype should
- // be "hidden").
- // @param[in] construct_TTi whether to compute TTi
- template <
- typename DerivedF,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedF> & F,
- const bool construct_TTi,
- std::vector<std::vector<std::vector<TTIndex> > > & TT,
- std::vector<std::vector<std::vector<TTiIndex> > > & TTi);
- /// \overload
- ///
- /// @param[in] E #F*3 by 2 list of all of directed edges in order (see
- /// `oriented_facets`)
- /// @param[in] EMAP #F*3 list of indices into uE, mapping each directed edge to unique
- /// undirected edge
- /// @param[in] uE2E #uE list of lists of indices into E of coexisting edges
- /// @param[in] construct_TTi whether to compute TTi
- ///
- /// \see unique_edge_map, oriented_facets
- template <
- typename DerivedE,
- typename DerivedEMAP,
- typename uE2EType,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedE> & E,
- const Eigen::MatrixBase<DerivedEMAP> & EMAP,
- const std::vector<std::vector<uE2EType > > & uE2E,
- const bool construct_TTi,
- std::vector<std::vector<std::vector<TTIndex> > > & TT,
- std::vector<std::vector<std::vector<TTiIndex> > > & TTi);
- /// \overload
- /// @param[in] uEC #uE+1 list of cumulative counts of directed edges sharing each
- /// unique edge so the uEC(i+1)-uEC(i) is the number of directed edges
- /// sharing the ith unique edge.
- /// @param[in] uEE #E list of indices into E, so that the consecutive segment of
- /// indices uEE.segment(uEC(i),uEC(i+1)-uEC(i)) lists all directed edges
- /// sharing the ith unique edge.
- template <
- typename DerivedEMAP,
- typename DeriveduEC,
- typename DeriveduEE,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void triangle_triangle_adjacency(
- const Eigen::MatrixBase<DerivedEMAP> & EMAP,
- const Eigen::MatrixBase<DeriveduEC> & uEC,
- const Eigen::MatrixBase<DeriveduEE> & uEE,
- const bool construct_TTi,
- std::vector<std::vector<std::vector<TTIndex> > > & TT,
- std::vector<std::vector<std::vector<TTiIndex> > > & TTi);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "triangle_triangle_adjacency.cpp"
- #endif
- #endif
|