mirror of https://github.com/CGAL/cgal
capitalize file name that gets included; fix typo
This commit is contained in:
parent
08eacf9d02
commit
a6d43f0a15
|
|
@ -95,3 +95,4 @@ endif(EIGEN3_FOUND)
|
||||||
create_single_source_cgal_program("test_does_bound_a_volume.cpp")
|
create_single_source_cgal_program("test_does_bound_a_volume.cpp")
|
||||||
create_single_source_cgal_program("test_pmp_clip.cpp")
|
create_single_source_cgal_program("test_pmp_clip.cpp")
|
||||||
create_single_source_cgal_program("triangulate_hole_polyline_test.cpp")
|
create_single_source_cgal_program("triangulate_hole_polyline_test.cpp")
|
||||||
|
create_single_source_cgal_program("area.cpp")
|
||||||
|
|
|
||||||
|
|
@ -189,7 +189,7 @@ public:
|
||||||
Vertex_handle
|
Vertex_handle
|
||||||
nearest_vertex(const Point& p, Face_handle start = Face_handle()) const
|
nearest_vertex(const Point& p, Face_handle start = Face_handle()) const
|
||||||
{
|
{
|
||||||
return nearest_vertex_dispatch<Tr>(p, start, Weighted_tag());
|
return nearest_vertex_dispatch<Tr_Base>(p, start, Weighted_tag());
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
#include <boost/iterator_adaptors.hpp>
|
#include <boost/iterator_adaptors.hpp>
|
||||||
#include <boost/graph/graph_traits.hpp>
|
#include <boost/graph/graph_traits.hpp>
|
||||||
#include <boost/graph/properties.hpp>
|
#include <boost/graph/properties.hpp>
|
||||||
#include <CGAL/boost/graph/graph_traits_triangulation_2.h>
|
#include <CGAL/boost/graph/graph_traits_Triangulation_2.h>
|
||||||
#include <CGAL/Triangulation_hierarchy_2.h>
|
#include <CGAL/Triangulation_hierarchy_2.h>
|
||||||
|
|
||||||
// The functions and classes in this file allows the user to
|
// The functions and classes in this file allows the user to
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue