| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2020 Oded Stein <[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_SCALAR_TO_CR_VECTOT_GRADIENT_H
- #define IGL_SCALAR_TO_CR_VECTOT_GRADIENT_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <Eigen/Sparse>
- namespace igl
- {
- /// Computes the gradient matrix with hat functions on the right, and vector
- /// CR functions on the left. See Oded Stein, Max Wardetzky, Alec Jacobson,
- /// Eitan Grinspun, 2020. "A Simple Discretization of the Vector Dirichlet
- /// Energy"
- ///
- /// @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 #F by 3 a mapping from each halfedge to each edge
- /// @param[in] oE #F by 3 the orientation (e.g., -1 or 1) of each halfedge
- /// @param[out] G 2*|HE| by #V gradient matrix
- template <typename DerivedV, typename DerivedF, typename DerivedE,
- typename DerivedOE, typename ScalarG>
- IGL_INLINE void
- scalar_to_cr_vector_gradient(
- const Eigen::MatrixBase<DerivedV>& V,
- const Eigen::MatrixBase<DerivedF>& F,
- const Eigen::MatrixBase<DerivedE>& E,
- const Eigen::MatrixBase<DerivedOE>& oE,
- Eigen::SparseMatrix<ScalarG>& G);
- /// \overload
- /// @param[out] E #F by 3 a mapping from each halfedge to each edge
- /// @param[out] oE #F by 3 the orientation (e.g., -1 or 1) of each halfedge
- template <typename DerivedV, typename DerivedF, typename DerivedE,
- typename DerivedOE, typename ScalarG>
- IGL_INLINE void
- scalar_to_cr_vector_gradient(
- const Eigen::MatrixBase<DerivedV>& V,
- const Eigen::MatrixBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedE>& E,
- Eigen::PlainObjectBase<DerivedOE>& oE,
- Eigen::SparseMatrix<ScalarG>& G);
- /// \overload
- /// \brief intrinsic version.
- ///
- /// @param[in] l_sq #F by 3 list of squared edge lengths of each halfedge
- /// @param[in] dA #F list of double areas
- ///
- /// \fileinfo
- template <typename DerivedF, typename DerivedL_sq, typename DeriveddA,
- typename DerivedE, typename DerivedOE, typename ScalarG>
- IGL_INLINE void scalar_to_cr_vector_gradient_intrinsic(
- const Eigen::MatrixBase<DerivedF>& F,
- const Eigen::MatrixBase<DerivedL_sq>& l_sq,
- const Eigen::MatrixBase<DeriveddA>& dA,
- const Eigen::MatrixBase<DerivedE>& E,
- const Eigen::MatrixBase<DerivedOE>& oE,
- Eigen::SparseMatrix<ScalarG>& G);
- /// \overload
- /// \fileinfo
- template <typename DerivedF, typename DerivedL_sq, typename DerivedE,
- typename DerivedOE, typename ScalarG>
- IGL_INLINE void scalar_to_cr_vector_gradient_intrinsic(
- const Eigen::MatrixBase<DerivedF>& F,
- const Eigen::MatrixBase<DerivedL_sq>& l_sq,
- const Eigen::MatrixBase<DerivedE>& E,
- const Eigen::MatrixBase<DerivedOE>& oE,
- Eigen::SparseMatrix<ScalarG>& G);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "scalar_to_cr_vector_gradient.cpp"
- #endif
- #endif
|