Files
dorayme/source/math_helper.cpp
2020-02-14 23:29:09 +00:00

29 lines
476 B
C++

/*
* DoRayMe - a quick and dirty Raytracer
* Math helping functions
*
* Created by Manoël Trapier
* Copyright (c) 2020 986-Studio.
*
*/
#include <math.h>
#include <float.h>
#include <math_helper.h>
static double current_precision = FLT_EPSILON;
void set_equal_precision(double v)
{
current_precision = v;
}
bool double_equal(double a, double b)
{
return fabs(a - b) < current_precision;
}
double deg_to_rad(double deg)
{
return deg * M_PI / 180.;
}