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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
|
// Copyright (c) 1997-2002 Max-Planck-Institute Saarbruecken (Germany).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/Nef_S2/include/CGAL/Nef_S2/Sphere_segment.h $
// $Id: include/CGAL/Nef_S2/Sphere_segment.h 08b27d3db14 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Michael Seel <seel@mpi-sb.mpg.de>
#ifndef CGAL_SPHERE_SEGMENT_H
#define CGAL_SPHERE_SEGMENT_H
#include <CGAL/license/Nef_S2.h>
#include <CGAL/basic.h>
#include <CGAL/Handle_for.h>
#include <CGAL/Nef_S2/Sphere_point.h>
#include <CGAL/Nef_S2/Sphere_circle.h>
#include <vector>
namespace CGAL {
template <class R_> class Sphere_segment_rep
{
typedef typename R_::Point_3 Point_3;
typedef typename R_::Plane_3 Plane_3;
typedef Sphere_point<R_> Point;
typedef Sphere_circle<R_> Circle;
typedef Sphere_segment_rep<R_> Rep;
friend class Sphere_segment<R_>;
public:
Sphere_segment_rep() :
ps_(), pt_(), c_()
{}
Sphere_segment_rep(const Point& p1, const Point& p2,
bool shorter_arc=true) :
ps_(p1), pt_(p2),
c_(CGAL::ORIGIN, R_().construct_orthogonal_vector_3_object()(CGAL::ORIGIN,
static_cast<const Point_3&>(p1),
static_cast<const Point_3&>(p2)))
{ // warning stays as reminder that one gets an arbitrary plane equation
// in this degenerate case
CGAL_warning(p1 != p2.antipode());
CGAL_assertion(p1 != p2.antipode());
if ( p1 == p2 ) {
Plane_3 h(CGAL::ORIGIN,p1-CGAL::ORIGIN);
c_ = Sphere_circle<R_>(CGAL::ORIGIN,h.base1());
}
if (!shorter_arc) c_ = c_.opposite();
CGAL_exactness_assertion(c_.has_on(p1) && c_.has_on(p2));
}
Sphere_segment_rep(const Point& p1, const Point& p2, const Circle& c) :
ps_(p1), pt_(p2), c_(c)
{ CGAL_assertion(c.has_on(p1)&&c.has_on(p2)); }
Sphere_segment_rep(const Circle& c1,
const Circle& c2) : c_(c1)
{ CGAL_assertion(!equal_as_sets(c1,c2));
ps_ = intersection(c1,c2);
pt_ = ps_.antipode();
if ( R_().orientation_3_object()(CGAL::ORIGIN,ps_,pt_,
CGAL::ORIGIN + c_.orthogonal_vector()) !=
CGAL::POSITIVE ) std::swap(ps_,pt_);
}
Sphere_segment_rep(const Rep& r) :
ps_(r.ps_), pt_(r.pt_), c_(r.c_) {}
Rep& operator=(const Rep& r)
{ ps_=r.ps_; pt_=r.pt_; c_=r.c_; return *this; }
protected:
Sphere_point<R_> ps_,pt_;
Sphere_circle<R_> c_;
};
/*{\Moptions print_title=yes }*/
/*{\Manpage{Sphere_segment}{R}{Segments on the unit sphere}{s}}*/
template <class R_>
class Sphere_segment :
public Handle_for< Sphere_segment_rep<R_> > {
/*{\Mdefinition An object |\Mvar| of type |\Mname| is a segment in the
surface of a unit sphere that is part of a great circle through the
origin. Sphere segments are represented by two sphere points $p$ and
$q$ plus an oriented plane $h$ that contains $p$ and $q$. The plane
determines the sphere segment. Let $c$ be the circle in the
intersection of $h$ and $S_2$. Then $s$ is that part of $c$ that is
swept, when we rotate $p$ into $q$ in counterclockwise rotation around
the normal vector of $h$ as seen from the positive halfspace.}*/
public:
/*{\Mtypes 6}*/
typedef R_ R;
/*{\Mtypemember representation class.}*/
typedef typename R_::RT RT;
/*{\Mtypemember ring number type.}*/
typedef Sphere_segment_rep<R_> Rep;
typedef Handle_for<Rep> Base;
typedef typename R_::Point_3 Point_3;
typedef typename R_::Vector_3 Vector_3;
typedef typename R_::Plane_3 Plane_3;
typedef typename R_::Line_3 Line_3;
typedef Sphere_segment<R_> Self;
/*{\Mcreation 4}*/
Sphere_segment() : Base() {}
Sphere_segment(const Sphere_point<R>& p1, const Sphere_point<R>& p2,
bool shorter_arc=true) : Base(Rep(p1,p2,shorter_arc)) {}
/*{\Mcreate creates a spherical segment spanning the shorter arc
from |p1| to |p2| if |shorter_arc == true|. Otherwise the longer
arc is created. \precond |p1 != p2| and |p1 != p2.antipode()|.}*/
Sphere_segment(const Sphere_point<R>& p1, const Sphere_point<R>& p2,
const Sphere_circle<R>& c) : Base(Rep(p1,p2,c)) {}
/*{\Mcreate creates a spherical segment spanning the arc
from |p1| to |p2| as part of the oriented circle |c|
(|p1 == p2| or |p1 == p2.antipode()| are possible.)
\precond |p1| and |p2| are contained in |c|.}*/
Sphere_segment(const Sphere_circle<R>& c1,
const Sphere_circle<R>& c2) : Base(Rep(c1,c2)) {}
/*{\Mcreate creates the spherical segment as part of |c1|
that is part of the halfsphere left of the oriented circle |c2|.
\precond |c1 != c2| as unoriented circles.}*/
// Sphere_segment(const Self& s) : Base(s) {}
/*{\Moperations 4 2}*/
const Sphere_point<R>& source() const { return this->ptr()->ps_; }
/*{\Mop the source point of |\Mvar|.}*/
const Sphere_point<R>& target() const { return this->ptr()->pt_; }
/*{\Mop the target point of |\Mvar|.}*/
const Sphere_circle<R>& sphere_circle() const { return this->ptr()->c_; }
/*{\Mop the great circle supporting |\Mvar|.}*/
Sphere_segment<R> opposite() const
/*{\Mop returns the spherical segment oriented from |target()|
to |source()| with the same point set as |\Mvar|. }*/
{ return Sphere_segment<R>(
target(),source(),sphere_circle().opposite()); }
Sphere_segment<R> complement() const
/*{\Mop returns the spherical segment oriented from |target()|
to |source()| with the point set completing |\Mvar| to a
full circle. }*/
{ return Sphere_segment<R>(target(),source(),sphere_circle()); }
int intersection(const Sphere_circle<R>& c,
std::vector<Sphere_segment<R> >& s) const;
int intersection(const Sphere_circle<R>& c,
Sphere_segment<R>& s1, Sphere_segment<R>& s2) const;
/*{\Mop returns the number of non-trivial connected components
of the intersection of |\Mvar| and the closed halfsphere left of
|c|.}*/
Sphere_point<R> intersection(const Sphere_segment<R>& so) const;
/*{\Mop returns the point of intersection of |\Mvar| and
|so|. \precond |\Mvar| and |so| do intersect.}*/
void split_halfcircle(Sphere_segment<R>& s1,
Sphere_segment<R>& s2) const
/*{\Mop splits a halfcircle into two equally sized segments.
\precond |\Mvar| is a halfcircle.}*/
{ CGAL_assertion( is_halfcircle() );
Plane_3 h(CGAL::ORIGIN,(target()-CGAL::ORIGIN));
Sphere_point<R> p =
CGAL::intersection(sphere_circle(),Sphere_circle<R>(h));
if ( !has_on_after_intersection(p) ) p = p.antipode();
s1 = Sphere_segment<R>(source(),p,sphere_circle());
s2 = Sphere_segment<R>(p,target(),sphere_circle());
}
bool is_short() const
/*{\Mop a segment is short iff it is shorter than a halfcircle.}*/
{
return R().orientation_3_object()(CGAL::ORIGIN,
source(),
target(),
orthogonal_pole())
== CGAL::POSITIVE; }
bool is_long() const
/*{\Mop a segment is long iff it is longer than a halfcircle.}*/
{ return R().orientation_3_object()(CGAL::ORIGIN,
source(),
target(),
orthogonal_pole())
== CGAL::NEGATIVE; }
bool is_degenerate() const { return source() == target(); }
/*{\Mop return true iff |\Mvar| is degenerate.}*/
bool is_halfcircle() const { return source().antipode() == target(); }
/*{\Mop return true iff |\Mvar| is a halfcircle.}*/
bool has_on(const Sphere_point<R>& p) const;
/*{\Mop return true iff |\Mvar| contains |p|.}*/
bool has_on_after_intersection(const Sphere_point<R>& p) const;
bool has_in_relative_interior(const Sphere_point<R>& p, bool check_has_on = true) const;
/*{\Mop return true iff |\Mvar| contains |p| in
its relative interior.}*/
bool operator==(const Sphere_segment<R>& so) const
{ return source() == so.source() && target() == so.target() &&
(source() == target() ||
sphere_circle() == so.sphere_circle()); }
bool operator!=(const Sphere_segment<R>& so) const
{ return !operator==(so); }
private:
Point_3 orthogonal_pole() const
{ return CGAL::ORIGIN + sphere_circle().orthogonal_vector(); }
CGAL::Orientation source_orientation(const CGAL::Sphere_point<R>& p) const
{ return R().orientation_3_object()(CGAL::ORIGIN,
orthogonal_pole(),
source(),
p);
}
CGAL::Orientation target_orientation(const CGAL::Sphere_point<R>& p) const
{ return R().orientation_3_object()(CGAL::ORIGIN,
target(),
orthogonal_pole(),
p);
}
};
template <typename R>
bool do_intersect_internally(const Sphere_segment<R>& s1,
const Sphere_segment<R>& s2,
Sphere_point<R>& p);
/*{\Mfunc return true iff |s1| and |s2| intersect internally
(non-degenerately). If |true| the parameter |p| returns the point of
intersection.}*/
template <typename R>
std::ostream& operator<<(std::ostream& os,
const CGAL::Sphere_segment<R>& s)
{ os << s.source()<<" "<<s.target()<<" "<<
s.sphere_circle().plane()<<" "; return os; }
template <typename R>
std::istream& operator>>(std::istream& is,
CGAL::Sphere_segment<R>& s)
{ CGAL::Sphere_point<R> p1,p2;
CGAL::Sphere_circle<R> c;
if ( !(is >> p1 >> p2 >> c) ) return is;
s = CGAL::Sphere_segment<R>(p1,p2,c);
return is; }
template <typename R>
std::pair< Sphere_segment<R>,Sphere_segment<R> >
Sphere_circle<R>::split_at(const Sphere_point<R>& p) const
{ CGAL_assertion(has_on(p));
Sphere_point<R> q(p.antipode());
return Sphere_segment_pair(
Sphere_segment<R>(p,q,*this),
Sphere_segment<R>(p,q,this->opposite()));
}
template <typename R>
std::pair< Sphere_segment<R>,Sphere_segment<R> >
Sphere_circle<R>::split_at_xy_plane() const
{ Self xycircle(0,0,1), yzcircle(1,0,0);
if ( !equal_as_sets(xycircle,*this) )
return split_at(intersection(*this,xycircle));
else
return split_at(intersection(*this,yzcircle));
}
/* Contains maps to two orientation checks with the wedge
spanned by the source and the target with planes orthogonal
to the supporting plane of $p$ and $q$. The logic depends on
the segments length: long or short. */
template <typename R>
bool Sphere_segment<R>::
has_on(const CGAL::Sphere_point<R>& p) const
{ if ( !sphere_circle().has_on(p) ) return false;
if ( !is_long() ) {
return source_orientation(p) != CGAL::NEGATIVE &&
target_orientation(p) != CGAL::NEGATIVE;
} else {
return source_orientation(p) != CGAL::NEGATIVE ||
target_orientation(p) != CGAL::NEGATIVE;
}
}
template <typename R>
bool Sphere_segment<R>::
has_on_after_intersection(const CGAL::Sphere_point<R>& p) const
{ return source_orientation(p) != CGAL::NEGATIVE &&
target_orientation(p) != CGAL::NEGATIVE;
}
template <typename R>
bool Sphere_segment<R>::
has_in_relative_interior(const CGAL::Sphere_point<R>& p, bool check_has_on) const
{ if (check_has_on &&( !sphere_circle().has_on(p) ) ) return false;
if ( !is_long() ) {
return source_orientation(p) == CGAL::POSITIVE &&
target_orientation(p) == CGAL::POSITIVE;
} else {
return source_orientation(p) == CGAL::POSITIVE ||
target_orientation(p) == CGAL::POSITIVE;
}
}
/* Intersection of two sphere segments. It does not work if the two
involved planes are equal as sets. */
template <typename R>
Sphere_point<R> Sphere_segment<R>::
intersection(const Sphere_segment<R>& s) const
{
CGAL_assertion(!equal_as_sets(sphere_circle(),s.sphere_circle()));
Sphere_point<R> res =
CGAL::intersection(sphere_circle(),s.sphere_circle());
if ( has_on(res) && s.has_on(res) ) return res;
return res.antipode();
}
template <typename R>
bool do_intersect_internally(const Sphere_segment<R>& s1,
const Sphere_segment<R>& s2,
Sphere_point<R>& p)
{
if ( equal_as_sets(s1.sphere_circle(),s2.sphere_circle()) )
return false;
p = CGAL::intersection(s1.sphere_circle(),s2.sphere_circle());
if ( s1.has_in_relative_interior(p, false) &&
s2.has_in_relative_interior(p, false) ) return true;
p = p.antipode();
if ( s1.has_in_relative_interior(p, false) &&
s2.has_in_relative_interior(p, false) ) return true;
return false;
}
template <typename R>
bool do_intersect_internally(const Sphere_circle<R>& c1,
const Sphere_segment<R>& s2,
Sphere_point<R>& p)
{
if ( equal_as_sets(c1,s2.sphere_circle()) )
return false;
p = CGAL::intersection(c1,s2.sphere_circle());
if ( s2.has_in_relative_interior(p, false) ) return true;
p = p.antipode();
if ( s2.has_in_relative_interior(p, false) ) return true;
return false;
}
} //namespace CGAL
#endif //CGAL_SPHERE_SEGMENT_H
|