assign_scalar.h 528 B

123456789101112131415161718192021222324
  1. #ifndef IGL_CGAL_ASSIGN_SCALAR_H
  2. #define IGL_CGAL_ASSIGN_SCALAR_H
  3. #include "../igl_inline.h"
  4. #include "CGAL_includes.hpp"
  5. namespace igl
  6. {
  7. namespace cgal
  8. {
  9. // Inputs:
  10. // cgal cgal scalar
  11. // Outputs:
  12. // d output scalar
  13. IGL_INLINE void assign_scalar(
  14. const typename CGAL::Epeck::FT & cgal,
  15. CGAL::Epeck::FT & d);
  16. IGL_INLINE void assign_scalar(
  17. const typename CGAL::Epeck::FT & cgal,
  18. double & d);
  19. }
  20. }
  21. #ifndef IGL_STATIC_LIBRARY
  22. # include "assign_scalar.cpp"
  23. #endif
  24. #endif