mirror of https://github.com/CGAL/cgal
62 lines
1.9 KiB
C++
62 lines
1.9 KiB
C++
// Copyright (c) 2009 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
// You can redistribute it and/or modify it under the terms of the GNU
|
|
// General Public License as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// Licensees holding a valid commercial license may use this file in
|
|
// accordance with the commercial license agreement provided with the software.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
//
|
|
// Author(s) : Pierre Alliez
|
|
//
|
|
//******************************************************************************
|
|
// File Description :
|
|
//
|
|
//******************************************************************************
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <CGAL/Timer.h>
|
|
|
|
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
|
#include <CGAL/Cartesian.h>
|
|
#include <CGAL/Simple_cartesian.h>
|
|
|
|
#include <CGAL/AABB_tree.h>
|
|
#include <CGAL/AABB_traits.h>
|
|
#include <CGAL/boost/graph/graph_traits_Polyhedron_3.h>
|
|
#include <CGAL/Polyhedron_3.h>
|
|
|
|
|
|
#include "AABB_test_util.h"
|
|
|
|
|
|
template<class K, class Tree, class Polyhedron, Primitive_type Type>
|
|
void test_impl(Tree& tree, Polyhedron& p, const double duration)
|
|
{
|
|
tree.accelerate_distance_queries(p.points_begin(),p.points_end());
|
|
|
|
test_distance_speed<Tree,K>(tree,duration);
|
|
test_all_distance_query_types<Tree,K>(tree);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
std::cout << "AABB distance to edge tests" << std::endl;
|
|
const double duration = 0.1;
|
|
test_kernels<SEGMENT>("./data/cube.off",duration);
|
|
test_kernels<SEGMENT>("./data/finger.off",duration);
|
|
test_kernels<SEGMENT>("./data/pinion.off",duration);
|
|
test_kernels<SEGMENT>("./data/coverrear.off",duration);
|
|
return 0;
|
|
}
|