/usr/include/CGAL/Hyperbola_ray_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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | // Copyright (c) 2003,2004 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) : Menelaos Karavelas <mkaravel@iacm.forth.gr>
#ifndef CGAL_HYPERBOLA_RAY_2_H
#define CGAL_HYPERBOLA_RAY_2_H
#include <CGAL/Hyperbola_segment_2.h>
namespace CGAL {
template < class Gt >
class Hyperbola_ray_2 : public Hyperbola_segment_2< Gt >
{
public:
typedef Sign Hyperbola_direction;
typedef CGAL::Hyperbola_segment_2<Gt> Base;
typedef typename Base::Site_2 Site_2;
typedef typename Base::Point_2 Point_2;
typedef typename Base::Segment_2 Segment_2;
typedef typename Gt::Ray_2 Ray_2;
typedef typename Base::FT FT;
// typedef typename R::RT FT;
// typedef double FT;
// typedef CGAL::Point_2< Cartesian<double> > Point_2;
// typedef CGAL::Segment_2< Cartesian<double> > Segment_2;
// typedef CGAL::Ray_2< Cartesian<double> > Ray_2;
using Base::t;
using Base::f;
protected:
#if defined(__POWERPC__) && \
defined(__GNUC__) && (__GNUC__ == 3 ) && (__GNUC_MINOR__ == 4)
// hack to avoid nasty warning for G++ 3.4 on Darwin
static FT OFFSET()
{
return FT(10000);
}
#else
static const FT& OFFSET()
{
static FT offset_(10000);
return offset_;
}
#endif
template< class Stream >
inline
void draw_ray(Stream &W) const
{
W << Ray_2(this->p1, this->p2);
}
Site_2 _f1, _f2;
Point_2 _p;
Hyperbola_direction _dir;
public:
Hyperbola_ray_2() : Hyperbola_segment_2< Gt >() {}
Hyperbola_ray_2(const Site_2 &f1, const Site_2 &f2,
const Point_2 &p,
const Hyperbola_direction& direction) :
Hyperbola_segment_2< Gt >(f1, f2, p, p),
_f1(f1), _f2(f2), _p(p), _dir(direction)
{
FT t1 = t(this->p1);
if ( direction == POSITIVE ) {
this->p2 = f(t1 + this->STEP * OFFSET());
} else {
this->p2 = f(t1 - this->STEP * OFFSET());
}
}
template<class QTWIDGET>
void draw_qt(QTWIDGET& s)
{
if ( CGAL::is_zero(this->r) ) {
draw_ray(s);
return;
}
double width = s.x_max() - s.x_min();
double height = s.y_max() - s.y_min();
if ( width > height ) {
this->STEP = height / 100.0;
} else {
this->STEP = width / 100.0;
}
FT t1 = t(this->p1);
if ( _dir == POSITIVE ) {
this->p2 = f(t1 + this->STEP * OFFSET());
} else {
this->p2 = f(t1 - this->STEP * OFFSET());
}
Hyperbola_segment_2< Gt >::draw(s);
}
template< class Stream >
inline
void draw(Stream& s) const
{
if ( CGAL::is_zero(this->r) ) {
draw_ray(s);
return;
}
Hyperbola_segment_2< Gt >::draw(s);
}
};
template< class Stream, class Gt >
inline
Stream& operator<<(Stream &s, const Hyperbola_ray_2<Gt> &H)
{
H.draw(s);
return s;
}
} //namespace CGAL
#endif // CGAL_HYPERBOLA_RAY_2_H
|