/usr/include/CGAL/Distance_2.h is in libcgal-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | // Copyright (c) 1997 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$
//
//
// Author(s) : Mariette Yvinec
// Sylvain Pion
#ifndef CGAL_DISTANCE_2_H
#define CGAL_DISTANCE_2_H
#include <CGAL/assertions.h>
#include <CGAL/distance_predicates_2.h>
namespace CGAL {
template <class I>
struct Distance_2
{
typedef typename I::Point Point;
Distance_2(const I* = NULL) {}
Distance_2(const Point& p0, const I* = NULL)
{ p[0]=p0; }
Distance_2(const Point& p0, const Point& p1, const I* = NULL)
{ p[0]=p0; p[1]=p1; }
Distance_2(const Point& p0, const Point& p1, const Point& p2,
const I* = NULL)
{ p[0]=p0; p[1]=p1; p[2]=p2; }
void set_point(int i, const Point& q)
{
CGAL_precondition( ((unsigned int) i) < 3 );
p[i] = q;
}
Point get_point(int i) const
{
CGAL_precondition( ((unsigned int) i) < 3 );
return p[i];
}
Comparison_result compare() const
{
return cmp_dist_to_point(p[0], p[1], p[2]);
}
private:
Point p[3];
};
template <class Traits>
struct Distance_xy_3 : public Distance_2<Traits>
{
typedef typename Distance_2<Traits>::Point Point;
public:
Distance_xy_3(const Point& p0,
const Traits* traits = NULL)
: Distance_2<Traits>(p0, traits) { }
Distance_xy_3(const Point& p0,
const Point& p1,
const Traits* traits = NULL)
: Distance_2<Traits>(p0,p1,traits) { }
Distance_xy_3(const Point& p0,
const Point& p1,
const Point& p2,
const Traits* traits = NULL)
: Distance_2<Traits>(p0,p1,p2,traits) { }
Comparison_result
compare() const
{
Point p0 = get_point(0);
Point p1 = get_point(1);
Point p2 = get_point(2);
return cmp_dist_to_pointC2(x(p0),y(p0),x(p1),y(p1),x(p2),y(p2));
}
};
} //namespace CGAL
#endif // CGAL_DISTANCE_2_H
|