cloudy-raytracer/common/common.h
2022-11-05 22:08:16 +01:00

18 lines
210 B
C

#ifndef COMMON_H
#define COMMON_H
#include <cmath>
#ifndef EPSILON
#define EPSILON 1E-4f
#endif
#ifndef INFINITY
#define INFINITY HUGE_VAL
#endif
#ifndef PI
#define PI 3.1415926535897932384f
#endif
#endif