From b9ee6c327d4250f2163468ad480082101e0c3993 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 23 Jul 2022 10:27:16 +1000 Subject: [PATCH] - Change internals of `bsinf()` and `bcosf()` to use BAM sine functions instead of coverting build angle into radians, then into BAM. --- source/core/binaryangle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/binaryangle.h b/source/core/binaryangle.h index 93524c48d..8eca29581 100644 --- a/source/core/binaryangle.h +++ b/source/core/binaryangle.h @@ -83,7 +83,7 @@ inline int bsin(const int ang, int shift = 0) } inline double bsinf(const double ang, const int shift = 0) { - return g_sin(ang * BAngRadian) * sinscale(shift); + return g_sinbam(ang * BAMUNIT) * sinscale(shift); } @@ -99,7 +99,7 @@ inline int bcos(const int ang, int shift = 0) } inline double bcosf(const double ang, const int shift = 0) { - return g_cos(ang * BAngRadian) * sinscale(shift); + return g_cosbam(ang * BAMUNIT) * sinscale(shift); }