From 05fe3b06c80fc7fa438ed5faf5805c79a92789e9 Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Tue, 3 Apr 2018 23:05:22 +0200 Subject: Fix last clang-tidy reported problems for performance-type-promotion-in-math-fn Based on https://travis-ci.org/minetest/minetest/jobs/361810382 output Also fix 2 missing copyright notices --- src/util/numeric.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util') diff --git a/src/util/numeric.cpp b/src/util/numeric.cpp index cb984d8cb..b88b4d545 100644 --- a/src/util/numeric.cpp +++ b/src/util/numeric.cpp @@ -157,7 +157,7 @@ bool isBlockInSight(v3s16 blockpos_b, v3f camera_pos, v3f camera_dir, // HOTFIX: use sligthly increased angle (+10%) to fix too agressive // culling. Somebody have to find out whats wrong with the math here. // Previous value: camera_fov / 2 - if(cosangle < cos(camera_fov * 0.55)) + if (cosangle < std::cos(camera_fov * 0.55f)) return false; return true; @@ -172,6 +172,6 @@ s16 adjustDist(s16 dist, float zoom_fov) return dist; // new_dist = dist * ((1 - cos(FOV / 2)) / (1-cos(zoomFOV /2))) ^ (1/3) - return round(dist * cbrt((1.0f - std::cos(default_fov / 2.0f)) / + return round(dist * std::cbrt((1.0f - std::cos(default_fov / 2.0f)) / (1.0f - std::cos(zoom_fov / 2.0f)))); } -- cgit v1.2.3