You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
Hello, all the header files fail to compile to lines that use this declaration:
static_assert(std::is_floating_point<Vector2::Type>::value, "Type must be floating-point");
with the following error:
'std::is_floating_point': 'dt::Vector2::Type' is not a valid template type argument for parameter '_Ty' d:\programming\delaunay-triangulation-master\dt_test\dt_test\vector2.h
Any idea how to fix it? Thanks
The text was updated successfully, but these errors were encountered:
Hello, sorry for being vague. The error is related to header files, for example the vector2.h one.
The line
"static_assert(std::is_floating_point<Vector2::Type>::value, "Type must be floating-point");"
will issue the error mentioned above. I'm using VC++ 2015.
If you want I can send the whole solution file to try...
Also, and more important, is there any way to make it support 3D delaunay triangulation?
Thanks
Hello, all the header files fail to compile to lines that use this declaration:
static_assert(std::is_floating_point<Vector2::Type>::value, "Type must be floating-point");
with the following error:
'std::is_floating_point': 'dt::Vector2::Type' is not a valid template type argument for parameter '_Ty' d:\programming\delaunay-triangulation-master\dt_test\dt_test\vector2.h
Any idea how to fix it? Thanks
The text was updated successfully, but these errors were encountered: