This commit is contained in:
Andreas Fabri 2024-12-11 16:28:10 +00:00
parent 73657575d0
commit fe687bd17c
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ using Kernel = CGAL::Epick_d<CGAL::Dimension_tag<4>>;
using Traits = CGAL::Frechet_distance_traits_d<Kernel>; using Traits = CGAL::Frechet_distance_traits_d<Kernel>;
using Point = Traits::Point_d; using Point = Traits::Point_d;
int main(int , char*) int main()
{ {
std::array<Point,4> A = { Point(0,0,0,0), Point(1,0,0,0), Point(1,1,0,1),Point(1,1,1,0)}; std::array<Point,4> A = { Point(0,0,0,0), Point(1,0,0,0), Point(1,1,0,1),Point(1,1,1,0)};
std::array<Point,4> B = { Point(0,0,0,0), Point(1,0,0,0), Point(1,1,0,0),Point(1,1,1,0)}; std::array<Point,4> B = { Point(0,0,0,0), Point(1,0,0,0), Point(1,1,0,0),Point(1,1,1,0)};