Skip to content

Commit

Permalink
Update src/Plugins/OrientationAnalysis/src/OrientationAnalysis/utilit…
Browse files Browse the repository at this point in the history
…ies/IntersectionUtilities.hpp

Co-authored-by: Jared Duffey <[email protected]>
  • Loading branch information
imikejackson and JDuffeyBQ committed Jun 27, 2024
1 parent 0cfbab6 commit 8a1d07d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ inline float deg2rad(float deg)
return deg * nx::core::Constants::k_PiOver180<float>;
}

inline float clamp(const float& lo, const float& hi, const float& v)
inline float clamp(float lo, float hi, float v)
{
return std::max(lo, std::min(hi, v));
}
Expand Down

0 comments on commit 8a1d07d

Please sign in to comment.