| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2018 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 IGL_COTMATRIX_INTRINSIC_H
- #define IGL_COTMATRIX_INTRINSIC_H
- #include "igl_inline.h"
- #include <Eigen/Dense>
- #include <Eigen/Sparse>
- namespace igl
- {
- /// Constructs the cotangent stiffness matrix (discrete laplacian) for a given
- /// mesh with faces F and edge lengths l.
- ///
- /// @param[in] l #F by 3 list of (half-)edge lengths
- /// @param[in] F #F by 3 list of face indices into some (not necessarily
- /// determined/embedable) list of vertex positions V. It is assumed #V ==
- /// F.maxCoeff()+1
- /// @param[out] L #V by #V sparse Laplacian matrix
- ///
- /// \see cotmatrix, intrinsic_delaunay_cotmatrix
- template <typename Derivedl, typename DerivedF, typename Scalar>
- IGL_INLINE void cotmatrix_intrinsic(
- const Eigen::MatrixBase<Derivedl> & l,
- const Eigen::MatrixBase<DerivedF> & F,
- Eigen::SparseMatrix<Scalar>& L);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "cotmatrix_intrinsic.cpp"
- #endif
- #endif
|