/usr/include/CGAL/bbox_intersection_3.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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | // Copyright (c) 1997
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel). 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 Lesser 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) : Geert-Jan Giezeman <geert@cs.uu.nl>
#ifndef CGAL_BBOX_INTERSECTION_3_H
#define CGAL_BBOX_INTERSECTION_3_H
#include <CGAL/Bbox_3.h>
#include <CGAL/Object.h>
namespace CGAL {
// This function intersects a bbox with a ray, line or segment
// Its essentially a copy of the function that was in Bbox_3_intersections.cpp
// But it must be a template function since the original kernel must be
// taken into account. (Michael.Hemmer@sophia.inria.fr)
template <class K>
Object
intersection_bl(const Bbox_3 &box,
double lpx, double lpy, double lpz,
double ldx, double ldy, double ldz,
bool min_infinite, bool max_infinite)
{
double seg_min = 0.0, seg_max = 1.0;
// first on x value
if (ldx == 0.0) {
if (lpx < box.xmin())
return Object();
if (lpx > box.xmax())
return Object();
} else {
double newmin, newmax;
if (ldx > 0.0) {
newmin = (box.xmin()-lpx)/ldx;
newmax = (box.xmax()-lpx)/ldx;
} else {
newmin = (box.xmax()-lpx)/ldx;
newmax = (box.xmin()-lpx)/ldx;
}
if (min_infinite) {
min_infinite = false;
seg_min = newmin;
} else {
if (newmin > seg_min)
seg_min = newmin;
}
if (max_infinite) {
max_infinite = false;
seg_max = newmax;
} else {
if (newmax < seg_max)
seg_max = newmax;
}
if (seg_max < seg_min)
return Object();
}
// now on y value
if (ldy == 0.0) {
if (lpy < box.ymin())
return Object();
if (lpy > box.ymax())
return Object();
} else {
double newmin, newmax;
if (ldy > 0.0) {
newmin = (box.ymin()-lpy)/ldy;
newmax = (box.ymax()-lpy)/ldy;
} else {
newmin = (box.ymax()-lpy)/ldy;
newmax = (box.ymin()-lpy)/ldy;
}
if (min_infinite) {
min_infinite = false;
seg_min = newmin;
} else {
if (newmin > seg_min)
seg_min = newmin;
}
if (max_infinite) {
max_infinite = false;
seg_max = newmax;
} else {
if (newmax < seg_max)
seg_max = newmax;
}
if (seg_max < seg_min)
return Object();
}
// now on z value
if (ldz == 0.0) {
if (lpz < box.zmin())
return Object();
if (lpz > box.zmax())
return Object();
} else {
double newmin, newmax;
if (ldz > 0.0) {
newmin = (box.zmin()-lpz)/ldz;
newmax = (box.zmax()-lpz)/ldz;
} else {
newmin = (box.zmax()-lpz)/ldz;
newmax = (box.zmin()-lpz)/ldz;
}
if (min_infinite) {
min_infinite = false;
seg_min = newmin;
} else {
if (newmin > seg_min)
seg_min = newmin;
}
if (max_infinite) {
max_infinite = false;
seg_max = newmax;
} else {
if (newmax < seg_max)
seg_max = newmax;
}
if (seg_max < seg_min)
return Object();
}
if (min_infinite || max_infinite) {
seg_max = 0.0;
CGAL_kernel_assertion_msg(true,
"Zero direction vector of line detected.");
}
typedef typename K::FT FT;
typedef typename K::Point_3 Point_3;
typedef typename K::Vector_3 Vector_3;
typedef typename K::Segment_3 Segment_3;
Point_3 ref_point = Point_3( FT(lpx), FT(lpy), FT(lpz));
Vector_3 dir = Vector_3( FT(ldx), FT(ldy), FT(ldz));
if (seg_max == seg_min)
return make_object(ref_point + dir * FT(seg_max));
return make_object(
Segment_3(ref_point + dir*FT(seg_min), ref_point + dir*FT(seg_max)));
}
} //namespace CGAL
#endif // CGAL_BBOX_INTERSECTION_3_H
|