mirror of https://github.com/CGAL/cgal
327 lines
7.3 KiB
C++
327 lines
7.3 KiB
C++
// ======================================================================
|
|
//
|
|
// Copyright (c) 1999 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// release :
|
|
// release_date :
|
|
//
|
|
// file : SegmentH2.h
|
|
// package : H2
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
// author(s) : Stefan Schirra
|
|
//
|
|
//
|
|
// coordinator : MPI, Saarbruecken (<Stefan.Schirra@mpi-sb.mpg.de>)
|
|
// ======================================================================
|
|
|
|
|
|
#ifndef CGAL_SEGMENTH2_H
|
|
#define CGAL_SEGMENTH2_H
|
|
|
|
#include <CGAL/PointH2.h>
|
|
#include <CGAL/LineH2.h>
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template < class R >
|
|
class Segment_repH2 : public Ref_counted
|
|
{
|
|
public:
|
|
Segment_repH2() {}
|
|
Segment_repH2(const PointH2<R>& sp, const PointH2<R>& ep)
|
|
: start(sp), end(ep) {}
|
|
|
|
PointH2<R> start, end;
|
|
};
|
|
|
|
template < class R >
|
|
class Simple_Segment_repH2
|
|
{
|
|
public:
|
|
Simple_Segment_repH2() {}
|
|
Simple_Segment_repH2(const PointH2<R>& sp, const PointH2<R>& ep)
|
|
: start(sp), end(ep) {}
|
|
|
|
PointH2<R> start, end;
|
|
};
|
|
|
|
template < class R_ >
|
|
class SegmentH2
|
|
: public R_::Segment_handle_2
|
|
{
|
|
public:
|
|
typedef R_ R;
|
|
typedef typename R::FT FT;
|
|
typedef typename R::RT RT;
|
|
|
|
typedef typename R::Segment_handle_2 Segment_handle_2_;
|
|
typedef typename Segment_handle_2_::element_type Segment_ref_2;
|
|
|
|
SegmentH2()
|
|
: Segment_handle_2_(Segment_ref_2()) {}
|
|
|
|
SegmentH2( const PointH2<R>& sp, const PointH2<R>& ep)
|
|
: Segment_handle_2_(Segment_ref_2(sp, ep)) {}
|
|
|
|
#if 1 // FIXME : should this exist at all ?
|
|
SegmentH2( const RT& sx, const RT& sy, const RT& sw,
|
|
const RT& ex, const RT& ey, const RT& ew)
|
|
: Segment_handle_2_( Segment_ref_2( PointH2<R>(sx,sy,sw),
|
|
PointH2<R>(ex,ey,ew) ) ) {}
|
|
#endif
|
|
|
|
bool operator==(const SegmentH2<R>& s) const;
|
|
bool operator!=(const SegmentH2<R>& s) const;
|
|
|
|
const PointH2<R> & source() const;
|
|
const PointH2<R> & target() const;
|
|
const PointH2<R> & start() const;
|
|
const PointH2<R> & end() const;
|
|
const PointH2<R> & vertex(int i) const;
|
|
const PointH2<R> & point(int i) const;
|
|
const PointH2<R> & operator[](int i) const;
|
|
const PointH2<R> & min() const;
|
|
const PointH2<R> & max() const;
|
|
const PointH2<R> & other_vertex(const PointH2<R>& p) const;
|
|
|
|
bool is_horizontal() const;
|
|
bool is_vertical() const;
|
|
bool has_on(const PointH2<R>& p) const;
|
|
bool collinear_has_on(const PointH2<R>& p) const;
|
|
bool is_degenerate() const;
|
|
|
|
FT squared_length() const;
|
|
|
|
DirectionH2<R> direction() const;
|
|
LineH2<R> supporting_line() const;
|
|
SegmentH2<R> opposite() const;
|
|
Bbox_2 bbox() const;
|
|
|
|
SegmentH2<R> transform( const Aff_transformationH2<R> & t) const;
|
|
};
|
|
|
|
#ifdef CGAL_CFG_TYPENAME_BUG
|
|
#define typename
|
|
#endif
|
|
|
|
template < class R >
|
|
inline
|
|
const PointH2<R> &
|
|
SegmentH2<R>::source() const
|
|
{ return Ptr()->start; }
|
|
|
|
template < class R >
|
|
inline
|
|
const PointH2<R> &
|
|
SegmentH2<R>::start() const
|
|
{ return Ptr()->start; }
|
|
|
|
template < class R >
|
|
inline
|
|
const PointH2<R> &
|
|
SegmentH2<R>::target() const
|
|
{ return Ptr()->end; }
|
|
|
|
template < class R >
|
|
inline
|
|
const PointH2<R> &
|
|
SegmentH2<R>::end() const
|
|
{ return Ptr()->end; }
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
const PointH2<R> &
|
|
SegmentH2<R>::min() const
|
|
{
|
|
return
|
|
lexicographically_xy_smaller_or_equal(start(),end()) ? start() : end();
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
const PointH2<R> &
|
|
SegmentH2<R>::max() const
|
|
{
|
|
return
|
|
lexicographically_xy_smaller_or_equal(start(),end()) ? end() : start();
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
const PointH2<R> &
|
|
SegmentH2<R>::other_vertex(const PointH2<R>& p) const
|
|
{
|
|
CGAL_kernel_precondition( (p == end()) || (p == start()) );
|
|
return ( p == start() ) ? end() : start() ;
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
const PointH2<R> &
|
|
SegmentH2<R>::vertex(int i) const
|
|
{
|
|
return (i%2 == 0) ? start() : end();
|
|
}
|
|
|
|
template < class R >
|
|
inline
|
|
const PointH2<R> &
|
|
SegmentH2<R>::point(int i) const
|
|
{ return vertex(i); }
|
|
|
|
template < class R >
|
|
inline
|
|
const PointH2<R> &
|
|
SegmentH2<R>::operator[](int i) const
|
|
{ return vertex(i); }
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
typename SegmentH2<R>::FT
|
|
SegmentH2<R>::squared_length() const
|
|
{ return (end() - start()) * (end() - start()); }
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
DirectionH2<R>
|
|
SegmentH2<R>::direction() const
|
|
{
|
|
CGAL_kernel_precondition( !is_degenerate() );
|
|
return DirectionH2<R>( end() - start() );
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
LineH2<R>
|
|
SegmentH2<R>::supporting_line() const
|
|
{
|
|
CGAL_kernel_precondition( !is_degenerate() );
|
|
return LineH2<R>(start(), end());
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
SegmentH2<R>
|
|
SegmentH2<R>::opposite() const
|
|
{ return SegmentH2<R>(end(), start()); }
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
SegmentH2<R>
|
|
SegmentH2<R>::
|
|
transform(const Aff_transformationH2<R>& t) const
|
|
{
|
|
return SegmentH2<R>(t.transform(start()), t.transform(end()) );
|
|
}
|
|
|
|
template < class R >
|
|
inline
|
|
Bbox_2
|
|
SegmentH2<R>::bbox() const
|
|
{ return start().bbox() + end().bbox(); }
|
|
|
|
#ifndef CGAL_NO_OSTREAM_INSERT_SEGMENTH2
|
|
template < class R >
|
|
std::ostream &
|
|
operator<<(std::ostream &os, const SegmentH2<R> &s)
|
|
{
|
|
switch(os.iword(IO::mode))
|
|
{
|
|
case IO::ASCII :
|
|
return os << s.source() << ' ' << s.target();
|
|
case IO::BINARY :
|
|
return os << s.source() << s.target();
|
|
default:
|
|
return os << "SegmentH2(" << s.source() << ", " << s.target() << ")";
|
|
}
|
|
}
|
|
#endif // CGAL_NO_OSTREAM_INSERT_SEGMENTH2
|
|
|
|
#ifndef CGAL_NO_ISTREAM_EXTRACT_SEGMENTH2
|
|
template < class R >
|
|
std::istream &
|
|
operator>>(std::istream &is, SegmentH2<R> &s)
|
|
{
|
|
PointH2<R> p, q;
|
|
is >> p >> q;
|
|
s = SegmentH2<R>(p, q);
|
|
return is;
|
|
}
|
|
#endif // CGAL_NO_ISTREAM_EXTRACT_SEGMENTH2
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
bool
|
|
SegmentH2<R>::is_horizontal() const
|
|
{
|
|
return ( Ptr()->start.hy() * Ptr()->end.hw()
|
|
== Ptr()->end.hy() * Ptr()->start.hw() );
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
bool
|
|
SegmentH2<R>::is_vertical() const
|
|
{
|
|
return ( Ptr()->start.hx() * Ptr()->end.hw()
|
|
== Ptr()->end.hx() * Ptr()->start.hw() );
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
bool
|
|
SegmentH2<R>::is_degenerate() const
|
|
{ return (start() == end()); }
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
bool
|
|
SegmentH2<R>::has_on(const PointH2<R>& p) const
|
|
{
|
|
if ( collinear(Ptr()->start, p, Ptr()->end ) )
|
|
{
|
|
return collinear_has_on(p);
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
bool
|
|
SegmentH2<R>::collinear_has_on(const PointH2<R>& p) const
|
|
{
|
|
return ( lexicographically_xy_smaller_or_equal(p, max() )
|
|
&& lexicographically_xy_smaller_or_equal(min(),p) );
|
|
}
|
|
template < class R >
|
|
CGAL_KERNEL_INLINE
|
|
bool
|
|
SegmentH2<R>::operator==(const SegmentH2<R>& s) const
|
|
{
|
|
return ( (start() == s.start() )
|
|
&&(end() == s.end() ) );
|
|
}
|
|
|
|
template < class R >
|
|
inline
|
|
bool
|
|
SegmentH2<R>::operator!=(const SegmentH2<R>& s) const
|
|
{ return ( !operator==(s) ); }
|
|
|
|
#ifdef CGAL_CFG_TYPENAME_BUG
|
|
#undef typename
|
|
#endif
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif // CGAL_SEGMENTH2_H
|