Add empty locate test

This commit is contained in:
Jackson Campolattaro 2020-07-09 11:25:25 -04:00
parent e730c72814
commit 5205b51e8d
2 changed files with 26 additions and 0 deletions

View File

@ -11,6 +11,7 @@ find_package(CGAL REQUIRED QUIET OPTIONAL_COMPONENTS Core)
create_single_source_cgal_program("test_octree_equality.cpp")
create_single_source_cgal_program("test_octree_refine.cpp")
create_single_source_cgal_program("test_octree_locate.cpp")
create_single_source_cgal_program("test_nearest_neighbor.cpp")

View File

@ -0,0 +1,25 @@
#define CGAL_TRACE_STREAM std::cerr
#include <iostream>
#include <CGAL/Octree.h>
#include <CGAL/Octree/IO.h>
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Point_set_3.h>
#include <cassert>
typedef CGAL::Simple_cartesian<double> Kernel;
typedef Kernel::Point_3 Point;
typedef Kernel::FT FT;
typedef CGAL::Point_set_3<Point> Point_set;
typedef CGAL::Octree::Octree
<Point_set, typename Point_set::Point_map>
Octree;
int main(void) {
return EXIT_SUCCESS;
}