| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 Alec Jacobson <[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 CROUZEIX_RAVIART_MASSMATRIX_H
- #define CROUZEIX_RAVIART_MASSMATRIX_H
- #include <Eigen/Dense>
- #include <Eigen/Sparse>
- namespace igl
- {
- /// CROUZEIX_RAVIART_MASSMATRIX Compute the Crouzeix-Raviart mass matrix where
- /// M(e,e) is just the sum of the areas of the triangles on either side of an
- /// edge e.
- ///
- /// See for example "Discrete Quadratic Curvature Energies" [Wardetzky, Bergou,
- /// Harmon, Zorin, Grinspun 2007]
- ///
- /// @param[in] V #V by dim list of vertex positions
- /// @param[in] F #F by 3/4 list of triangle/tetrahedron indices
- /// @param[out] M #E by #E edge/face-based diagonal mass matrix
- /// @param[out] E #E by 2/3 list of edges/faces
- /// @param[out] EMAP #F*3/4 list of indices mapping allE to E
- ///
- /// \see crouzeix_raviart_cotmatrix
- template <typename MT, typename DerivedV, typename DerivedF, typename DerivedE, typename DerivedEMAP>
- void crouzeix_raviart_massmatrix(
- const Eigen::MatrixBase<DerivedV> & V,
- const Eigen::MatrixBase<DerivedF> & F,
- Eigen::SparseMatrix<MT> & M,
- Eigen::PlainObjectBase<DerivedE> & E,
- Eigen::PlainObjectBase<DerivedEMAP> & EMAP);
- /// CROUZEIX_RAVIART_MASSMATRIX Compute the Crouzeix-Raviart mass matrix where
- /// M(e,e) is just the sum of the areas of the triangles on either side of an
- /// edge e.
- ///
- /// See for example "Discrete Quadratic Curvature Energies" [Wardetzky, Bergou,
- /// Harmon, Zorin, Grinspun 2007]
- ///
- /// @param[in] V #V by dim list of vertex positions
- /// @param[in] F #F by 3/4 list of triangle/tetrahedron indices
- /// @param[in] E #E by 2/3 list of edges/faces
- /// @param[in] EMAP #F*3/4 list of indices mapping allE to E
- /// @param[out] M #E by #E edge/face-based diagonal mass matrix
- ///
- /// \see crouzeix_raviart_cotmatrix
- template <typename MT, typename DerivedV, typename DerivedF, typename DerivedE, typename DerivedEMAP>
- void crouzeix_raviart_massmatrix(
- const Eigen::MatrixBase<DerivedV> & V,
- const Eigen::MatrixBase<DerivedF> & F,
- const Eigen::MatrixBase<DerivedE> & E,
- const Eigen::MatrixBase<DerivedEMAP> & EMAP,
- Eigen::SparseMatrix<MT> & M);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "crouzeix_raviart_massmatrix.cpp"
- #endif
-
- #endif
|