libigl v2.5.0
Loading...
Searching...
No Matches
lscm_hessian.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2023 Alec Jacobson
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8#ifndef IGL_LSCM_HESSIAN_H
9#define IGL_LSCM_HESSIAN_H
10#include <Eigen/Dense>
11#include <Eigen/Sparse>
12
13namespace igl
14{
33 template <typename DerivedV, typename DerivedF, typename QScalar>
35 const Eigen::MatrixBase<DerivedV> & V,
36 const Eigen::MatrixBase<DerivedF> & F,
37 Eigen::SparseMatrix<QScalar> & Q);
38}
39
40#ifndef IGL_STATIC_LIBRARY
41#include "lscm_hessian.cpp"
42#endif
43
44#endif
Definition AABB.h:17
void lscm_hessian(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, Eigen::SparseMatrix< QScalar > &Q)
Compute a Least-squares conformal map parametrization (equivalently derived in "Intrinsic Parameteriz...