mirror of https://github.com/CGAL/cgal
untabify
This commit is contained in:
parent
c9f80d694f
commit
420f9d64f6
|
|
@ -31,7 +31,7 @@ struct Indexed_triangle_set
|
|||
std::vector<std::array<int,3> >& faces;
|
||||
|
||||
Indexed_triangle_set(std::vector<P>& vertices,
|
||||
std::vector<std::array<int,3> >& faces)
|
||||
std::vector<std::array<int,3> >& faces)
|
||||
: vertices(vertices), faces(faces)
|
||||
{}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1088,7 +1088,7 @@ void convex_hull_3(const VertexListGraph& g,
|
|||
template <class InputIterator, class P>
|
||||
void convex_hull_3(InputIterator first, InputIterator beyond,
|
||||
std::vector<P>& vertices,
|
||||
std::vector<std::array<int,3> >& faces,
|
||||
std::vector<std::array<int,3> >& faces,
|
||||
typename std::enable_if<CGAL::is_iterator<InputIterator>::value>::type* = 0)
|
||||
{
|
||||
typedef typename std::iterator_traits<InputIterator>::value_type Point_3;
|
||||
|
|
|
|||
Loading…
Reference in New Issue