https://github.com/HTDerekLiu/surface_multigrid_code
Revision fa347f1e4224b242b2167af2548bee35fe94c603 authored by HTDerekLiu on 01 March 2021, 20:34:44 UTC, committed by HTDerekLiu on 01 March 2021, 20:34:44 UTC
1 parent bdbd3fe
Raw File
Tip revision: fa347f1e4224b242b2167af2548bee35fe94c603 authored by HTDerekLiu on 01 March 2021, 20:34:44 UTC
add libigl
Tip revision: fa347f1
quasi_conformal_error.h
#ifndef QUASI_CONFORMAL_ERROR_H
#define QUASI_CONFORMAL_ERROR_H

#include <Eigen/Core>
#include <math.h> 

void quasi_conformal_error(
  const Eigen::MatrixXd & V,
  const Eigen::MatrixXi & F,
  const Eigen::MatrixXd & U, // UV
  Eigen::VectorXd & error);
#endif
back to top