diff --git a/NewKernel_d/include/CGAL/Kernel_d/Kernel_d_interface.h b/NewKernel_d/include/CGAL/Kernel_d/Kernel_d_interface.h index 2cd4ed56597..5eab7f2b64c 100644 --- a/NewKernel_d/include/CGAL/Kernel_d/Kernel_d_interface.h +++ b/NewKernel_d/include/CGAL/Kernel_d/Kernel_d_interface.h @@ -68,13 +68,13 @@ template struct Kernel_d_interface : public Base_ { return this->kernel().point_dimension_d_object()(p); } FT cartesian(Point_d const&p, int i){ - return this->kernel().compute_coordinate_d_object()(p); + return this->kernel().compute_coordinate_d_object()(p,i); } RT homogeneous(Point_d const&p, int i){ throw "not implemented yet"; return 0; // FIXME - //return this->kernel().compute_coordinate_d_object()(p); + //return this->kernel().compute_coordinate_d_object()(p,i); } }; struct Construct_cartesian_const_iterator_d : private Store_kernel {