https://github.com/HTDerekLiu/surface_multigrid_code
Revision 2a5ce10bcc87d1ae648b298a39eec2f368b24b24 authored by HTDerekLiu on 24 May 2021, 13:03:36 UTC, committed by HTDerekLiu on 24 May 2021, 13:03:36 UTC
1 parent 5d998ed
Raw File
Tip revision: 2a5ce10bcc87d1ae648b298a39eec2f368b24b24 authored by HTDerekLiu on 24 May 2021, 13:03:36 UTC
add balloon
Tip revision: 2a5ce10
single_collapse_data.h
#ifndef SINGEL_COLLAPSE_DATA_H
#define SINGEL_COLLAPSE_DATA_H

#include <vector>
#include <Eigen/Core>

struct single_collapse_data
{
  Eigen::VectorXi b, FIdx_pre, FIdx_post;
  Eigen::VectorXi subsetVIdx;
  Eigen::MatrixXd UV_pre, UV_post, V_pre, V_post;
  Eigen::MatrixXi FUV_pre, FUV_post;  
  std::vector<int> Nsv, Ndv;
};

#endif
back to top