30 lines
445 B
C
30 lines
445 B
C
|
#pragma once
|
||
|
|
||
|
#include <cmath>
|
||
|
#include <cstdlib>
|
||
|
#include <limits>
|
||
|
#include <memory>
|
||
|
|
||
|
// usings
|
||
|
|
||
|
using std::shared_ptr;
|
||
|
using std::make_shared;
|
||
|
using std::sqrt;
|
||
|
|
||
|
// constants
|
||
|
|
||
|
const double infinity = std::numeric_limits<double>::infinity();
|
||
|
const double pi = 3.1415926535897932385;
|
||
|
|
||
|
// utility functions
|
||
|
|
||
|
inline double degrees_to_radians(double degrees)
|
||
|
{
|
||
|
return degrees * pi / 180;
|
||
|
}
|
||
|
|
||
|
// common headers
|
||
|
|
||
|
#include "ray.h"
|
||
|
#include "vec3.h"
|