cpp-raytracer/rtweekend.hpp

19 lines
249 B
C++

#ifndef RTWEEKEND_H
#define RTWEEKEND_H
#include <math.h>
#include <memory>
/* Utility functions */
double degrees_to_radians(double d)
{
return d * M_PI / 180;
}
/* Common internal headers */
#include "ray.hpp"
#include "vec3.hpp"
#endif