sign.h 793 B

1234567891011121314151617181920
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2025 Alec Jacobson <[email protected]>
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public License
  6. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  7. // obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef IGL_SIGN_H
  9. #define IGL_SIGN_H
  10. namespace igl
  11. {
  12. /// Returns the sign of a number. https://en.wikipedia.org/wiki/Sign_function
  13. ///
  14. /// @param[in] x The number to compute the sign of.
  15. /// @return 1 if x > 0, -1 if x < 0, and 0 if x == 0.
  16. ///
  17. /// https://stackoverflow.com/questions/1903954/is-there-a-standard-sign-function-signum-sgn-in-c-c
  18. template <typename T> inline T sign(const T & x){return (x>T(0)) - (x<T(0));}
  19. }
  20. #endif