VEndymionV

Untitled

Sep 3rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. bool comp(float left, float right) {
  2.  
  3.     float eps = 4.0f;
  4.  
  5.     if (fabsf(left - right) < eps) {
  6.         return true;
  7.     }
  8.     else
  9.         return false;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment