capitalize file name that gets included; fix typo

This commit is contained in:
Andreas Fabri 2017-03-24 08:44:18 +01:00
parent 08eacf9d02
commit a6d43f0a15
3 changed files with 3 additions and 2 deletions

View File

@ -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")

View File

@ -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:

View File

@ -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