123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2014 Daniele Panozzo <daniele.panozzo@gmail.com>
- //
- // 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/.
- #include "triangle_triangle_adjacency.h"
- #include "is_edge_manifold.h"
- #include "all_edges.h"
- #include "unique_simplices.h"
- #include "unique_edge_map.h"
- #include <algorithm>
- #include <iostream>
- // Extract the face adjacencies
- template <typename DerivedF, typename TTT_type, typename DerivedTT>
- IGL_INLINE void igl::triangle_triangle_adjacency_extractTT(
- const Eigen::PlainObjectBase<DerivedF>& F,
- std::vector<std::vector<TTT_type> >& TTT,
- Eigen::PlainObjectBase<DerivedTT>& TT)
- {
- TT.setConstant((int)(F.rows()),F.cols(),-1);
- for(int i=1;i<(int)TTT.size();++i)
- {
- std::vector<int>& r1 = TTT[i-1];
- std::vector<int>& r2 = TTT[i];
- if ((r1[0] == r2[0]) && (r1[1] == r2[1]))
- {
- TT(r1[2],r1[3]) = r2[2];
- TT(r2[2],r2[3]) = r1[2];
- }
- }
- }
- template <typename DerivedF, typename DerivedTT>
- IGL_INLINE void igl::triangle_triangle_adjacency(
- const Eigen::PlainObjectBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedTT>& TT)
- {
- DerivedTT TTi;
- return triangle_triangle_adjacency(F,TT,TTi);
- }
- template <typename DerivedF, typename TTT_type>
- IGL_INLINE void igl::triangle_triangle_adjacency_preprocess(
- const Eigen::PlainObjectBase<DerivedF>& F,
- std::vector<std::vector<TTT_type> >& TTT)
- {
- for(int f=0;f<F.rows();++f)
- for (int i=0;i<F.cols();++i)
- {
- // v1 v2 f ei
- int v1 = F(f,i);
- int v2 = F(f,(i+1)%F.cols());
- if (v1 > v2) std::swap(v1,v2);
- std::vector<int> r(4);
- r[0] = v1; r[1] = v2;
- r[2] = f; r[3] = i;
- TTT.push_back(r);
- }
- std::sort(TTT.begin(),TTT.end());
- }
- // Extract the face adjacencies indices (needed for fast traversal)
- template <typename DerivedF, typename TTT_type, typename DerivedTTi>
- IGL_INLINE void igl::triangle_triangle_adjacency_extractTTi(
- const Eigen::PlainObjectBase<DerivedF>& F,
- std::vector<std::vector<TTT_type> >& TTT,
- Eigen::PlainObjectBase<DerivedTTi>& TTi)
- {
- TTi.setConstant((int)(F.rows()),F.cols(),-1);
- for(int i=1;i<(int)TTT.size();++i)
- {
- std::vector<int>& r1 = TTT[i-1];
- std::vector<int>& r2 = TTT[i];
- if ((r1[0] == r2[0]) && (r1[1] == r2[1]))
- {
- TTi(r1[2],r1[3]) = r2[3];
- TTi(r2[2],r2[3]) = r1[3];
- }
- }
- }
- // Compute triangle-triangle adjacency with indices
- template <typename DerivedF, typename DerivedTT, typename DerivedTTi>
- IGL_INLINE void igl::triangle_triangle_adjacency(
- const Eigen::PlainObjectBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedTT>& TT,
- Eigen::PlainObjectBase<DerivedTTi>& TTi)
- {
- std::vector<std::vector<int> > TTT;
- triangle_triangle_adjacency_preprocess(F,TTT);
- triangle_triangle_adjacency_extractTT(F,TTT,TT);
- triangle_triangle_adjacency_extractTTi(F,TTT,TTi);
- }
- template <
- typename DerivedF,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void igl::triangle_triangle_adjacency(
- const Eigen::PlainObjectBase<DerivedF> & F,
- std::vector<std::vector<std::vector<TTIndex> > > & TT,
- std::vector<std::vector<std::vector<TTiIndex> > > & TTi)
- {
- return triangle_triangle_adjacency(F,true,TT,TTi);
- }
- template <
- typename DerivedF,
- typename TTIndex>
- IGL_INLINE void igl::triangle_triangle_adjacency(
- const Eigen::PlainObjectBase<DerivedF> & F,
- std::vector<std::vector<std::vector<TTIndex> > > & TT)
- {
- std::vector<std::vector<std::vector<TTIndex> > > not_used;
- return triangle_triangle_adjacency(F,false,TT,not_used);
- }
- template <
- typename DerivedF,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void igl::triangle_triangle_adjacency(
- const Eigen::PlainObjectBase<DerivedF> & F,
- const bool construct_TTi,
- std::vector<std::vector<std::vector<TTIndex> > > & TT,
- std::vector<std::vector<std::vector<TTiIndex> > > & TTi)
- {
- using namespace Eigen;
- using namespace std;
- assert(F.cols() == 3 && "Faces must be triangles");
- // number of faces
- typedef typename DerivedF::Index Index;
- typedef Matrix<typename DerivedF::Scalar,Dynamic,2> MatrixX2I;
- typedef Matrix<typename DerivedF::Index,Dynamic,1> VectorXI;
- MatrixX2I E,uE;
- VectorXI EMAP;
- vector<vector<Index> > uE2E;
- unique_edge_map(F,E,uE,EMAP,uE2E);
- return triangle_triangle_adjacency(E,EMAP,uE2E,construct_TTi,TT,TTi);
- }
- template <
- typename DerivedE,
- typename DerivedEMAP,
- typename uE2EType,
- typename TTIndex,
- typename TTiIndex>
- IGL_INLINE void igl::triangle_triangle_adjacency(
- const Eigen::PlainObjectBase<DerivedE> & E,
- const Eigen::PlainObjectBase<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)
- {
- using namespace std;
- using namespace Eigen;
- typedef typename DerivedE::Index Index;
- const size_t m = E.rows()/3;
- assert((size_t)E.rows() == m*3 && "E should come from list of triangles.");
- // E2E[i] --> {j,k,...} means face edge i corresponds to other faces edges j
- // and k
- TT.resize (m,vector<vector<TTIndex> >(3));
- if(construct_TTi)
- {
- TTi.resize(m,vector<vector<TTiIndex> >(3));
- }
- // No race conditions because TT*[f][c]'s are in bijection with e's
- // Minimum number of iterms per openmp thread
- //const size_t num_e = E.rows();
- # ifndef IGL_OMP_MIN_VALUE
- # define IGL_OMP_MIN_VALUE 1000
- # endif
- # pragma omp parallel for if (m>IGL_OMP_MIN_VALUE)
- // Slightly better memory access than loop over E
- for(Index f = 0;f<(Index)m;f++)
- {
- for(Index c = 0;c<3;c++)
- {
- const Index e = f + m*c;
- //const Index c = e/m;
- const vector<uE2EType> & N = uE2E[EMAP(e)];
- for(const auto & ne : N)
- {
- const Index nf = ne%m;
- // don't add self
- if(nf != f)
- {
- TT[f][c].push_back(nf);
- if(construct_TTi)
- {
- const Index nc = ne/m;
- TTi[f][c].push_back(nc);
- }
- }
- }
- }
- }
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template specialization
- // generated by autoexplicit.sh
- template void igl::triangle_triangle_adjacency<Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
- // generated by autoexplicit.sh
- template void igl::triangle_triangle_adjacency<Eigen::Matrix<int, -1, 3, 0, -1, 3>, Eigen::Matrix<int, -1, 3, 0, -1, 3> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 3, 0, -1, 3> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 3, 0, -1, 3> >&);
- template void igl::triangle_triangle_adjacency<Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
- template void igl::triangle_triangle_adjacency<Eigen::Matrix<int, -1, 2, 0, -1, 2>, Eigen::Matrix<long, -1, 1, 0, -1, 1>, long, long, long>(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> > const&, Eigen::PlainObjectBase<Eigen::Matrix<long, -1, 1, 0, -1, 1> > const&, std::vector<std::vector<long, std::allocator<long> >, std::allocator<std::vector<long, std::allocator<long> > > > const&, bool, std::vector<std::vector<std::vector<long, std::allocator<long> >, std::allocator<std::vector<long, std::allocator<long> > > >, std::allocator<std::vector<std::vector<long, std::allocator<long> >, std::allocator<std::vector<long, std::allocator<long> > > > > >&, std::vector<std::vector<std::vector<long, std::allocator<long> >, std::allocator<std::vector<long, std::allocator<long> > > >, std::allocator<std::vector<std::vector<long, std::allocator<long> >, std::allocator<std::vector<long, std::allocator<long> > > > > >&);
- template void igl::triangle_triangle_adjacency<Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, 1, 0, -1, 1>, unsigned long, int, int>(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> > const&, std::vector<std::vector<unsigned long, std::allocator<unsigned long> >, std::allocator<std::vector<unsigned long, std::allocator<unsigned long> > > > const&, bool, std::vector<std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >, std::allocator<std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > > > >&, std::vector<std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >, std::allocator<std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > > > >&);
- #endif
|