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
always_try_never_care.h
#ifndef ALWAYS_TRY_NEVER_CARE_H
#define ALWAYS_TRY_NEVER_CARE_H
#include "decimate_func_types.h"
  // Outputs:
  //   always_try  function that always returns true
  //   never_care  fuction that is always a no-op
  void always_try_never_care(
    decimate_pre_collapse_func  & always_try,
    decimate_post_collapse_func & never_care);

#endif 

back to top