Loading...
Searching...
No Matches
Go to the documentation of this file. 1#ifndef IGL_PREDICATES_ASSERT_SCALAR_H
3#ifdef LIBIGL_PREDICATES_USE_FLOAT
4#define IGL_PREDICATES_ASSERT_SCALAR(Vector) \
6 std::is_same<typename Vector::Scalar, float>::value, \
7 "Shewchuk's exact predicates only support float")
9#define IGL_PREDICATES_ASSERT_SCALAR(Vector) \
11 std::is_same<typename Vector::Scalar, double>::value || \
12 std::is_same<typename Vector::Scalar, float>::value, \
13 "Shewchuk's exact predicates only support float and double")