ARC_ASSIST: Fix return type in bool check

The return for special angle check is boolean.
This commit is contained in:
Seth Hillbrand 2018-09-30 10:10:53 -07:00
parent 41e4bc4d9f
commit 81483a9670
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ double getNormDeciDegFromRad( double aRadians )
static const double ANGLE_EPSILON = 1e-9;
double angleIsSpecial( double aRadians )
bool angleIsSpecial( double aRadians )
{
return std::fabs( std::remainder( aRadians, M_PI_4 ) ) < ANGLE_EPSILON;
}