mirror of https://github.com/CGAL/cgal
In 5D we enter Orientation_5, but not in 4D. why?
This commit is contained in:
parent
b38b13e2ef
commit
15760cfc78
|
|
@ -342,7 +342,7 @@ struct Cartesian_static_filters<Dimension_tag<3>, R_, Derived_> : public R_ {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifndef CGAL_NO_STATIC_FILTER_5
|
#ifndef CGAL_NO_STATIC_FILTER_456
|
||||||
|
|
||||||
template <class R_, class Derived_>
|
template <class R_, class Derived_>
|
||||||
struct Cartesian_static_filters<Dimension_tag<4>, R_, Derived_> : public R_ {
|
struct Cartesian_static_filters<Dimension_tag<4>, R_, Derived_> : public R_ {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Switch off the static filters for 4, 5, and 6 points.
|
||||||
|
// #define CGAL_NO_STATIC_FILTER_456
|
||||||
|
|
||||||
#include <CGAL/Epick_d.h>
|
#include <CGAL/Epick_d.h>
|
||||||
#include <CGAL/Triangulation.h>
|
#include <CGAL/Triangulation.h>
|
||||||
|
|
@ -23,7 +25,7 @@ int main()
|
||||||
const int D = 5; // we work in Euclidean 5-space
|
const int D = 5; // we work in Euclidean 5-space
|
||||||
|
|
||||||
std::vector<Triangulation::Point> points;
|
std::vector<Triangulation::Point> points;
|
||||||
std::ifstream in("points.txt");
|
std::ifstream in("points_5.txt");
|
||||||
Triangulation::Point p;
|
Triangulation::Point p;
|
||||||
int d;
|
int d;
|
||||||
in >> d;
|
in >> d;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue