From 3a45556df49bb9ab0f85c1937ad5644dcaec7e79 Mon Sep 17 00:00:00 2001 From: Mariette Yvinec Date: Thu, 12 Feb 2004 10:42:46 +0000 Subject: [PATCH] removed unused file --- .../include/CGAL/smallest_radius_3.h | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 Packages/Alpha_shapes_3/include/CGAL/smallest_radius_3.h diff --git a/Packages/Alpha_shapes_3/include/CGAL/smallest_radius_3.h b/Packages/Alpha_shapes_3/include/CGAL/smallest_radius_3.h deleted file mode 100644 index ab7f784bb54..00000000000 --- a/Packages/Alpha_shapes_3/include/CGAL/smallest_radius_3.h +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 1997 INRIA Sophia-Antipolis (France). -// All rights reserved. -// -// This file is part of CGAL (www.cgal.org); you may redistribute it under -// the terms of the Q Public License version 1.0. -// See the file LICENSE.QPL distributed with CGAL. -// -// 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. -// -// $Source$ -// $Revision$ $Date$ -// $Name$ -// -// Author(s) : Tran Kai Frank DA - -#ifndef CGAL_SMALLEST_RADIUS_3_H -#define CGAL_SMALLEST_RADIUS_3_H - -#include - -CGAL_BEGIN_NAMESPACE - -template -CGAL_KERNEL_MEDIUM_INLINE -typename R::FT -squared_radius_smallest_circumsphere(const Point_3 &p, - const Point_3 &q) -{ - Vector_3 v(p - q); - return typename R::FT ((v*v)/R::FT(4)); -} - -CGAL_END_NAMESPACE - -#endif // CGAL_SMALLEST_RADIUS_3_H