#include "row_to_point.h" template < typename Kernel, typename DerivedV> IGL_INLINE CGAL::Point_2 igl::copyleft::cgal::row_to_point( const Eigen::PlainObjectBase & V, const typename DerivedV::Index & i) { return CGAL::Point_2(V(i,0),V(i,1)); }