Add a function to convert degree to radian.

This commit is contained in:
Godzil
2020-02-14 23:29:09 +00:00
parent dee4b9ae91
commit 1f4b14c896
2 changed files with 9 additions and 0 deletions

View File

@@ -10,7 +10,11 @@
#ifndef DORAYME_MATH_HELPER_H
#define DORAYME_MATH_HELPER_H
#include <math.h>
void set_equal_precision(double v);
bool double_equal(double a, double b);
double deg_to_rad(double deg);
#endif //DORAYME_MATH_HELPER_H