#ifndef EPS_H #define EPS_H // Define a standard value for double epsilon namespace igl { const double DOUBLE_EPS = 1.0e-14; const double DOUBLE_EPS_SQ = 1.0e-28; } #endif