https://github.com/HTDerekLiu/surface_multigrid_code
Revision 948deb8c426da4d90588e083aab946d71380facb authored by eriszhang on 08 August 2021, 04:18:24 UTC, committed by eriszhang on 08 August 2021, 04:18:24 UTC
1 parent 25d075e
Raw File
Tip revision: 948deb8c426da4d90588e083aab946d71380facb authored by eriszhang on 08 August 2021, 04:18:24 UTC
small fix
Tip revision: 948deb8
get_post_faces.h
#ifndef GET_POST_FACES_H
#define GET_POST_FACES_H

#include <vector>
#include <iostream>
#include <igl/slice.h>

#include <Eigen/Core>
#include <Eigen/Dense>

void get_post_faces(
	const Eigen::MatrixXi & F_pre,
	const int & vi,
	const int & vj,
  Eigen::VectorXi & f_keep,
	Eigen::MatrixXi & F_post);

#endif
back to top