aurora-rendering-engine/include/basic/math.h

12 lines
190 B
C++

#ifndef ARE_INCLUDE_BASIC_MATH_H
#define ARE_INCLUDE_BASIC_MATH_H
namespace are {
// A small epsilon value for geometric calculations
constexpr double GEOMETRY_EPSILON = 1e-12;
}
#endif