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
remove_row.h
#ifndef REMOVE_ROW_H
#define REMOVE_ROW_H

#include <Eigen/Core>

void remove_row(
  const int rowToRemove,
  Eigen::MatrixXd & matrix);

void remove_row(
  const int rowToRemove,
  Eigen::MatrixXi & matrix);
  
#endif
back to top