cgal/Old_Packages/C3/include/CGAL/Cartesian/Direction_3.C

253 lines
5.3 KiB
C

// ======================================================================
//
// Copyright (c) 1998 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 : $CGAL_Revision: CGAL-2.1-I-28 $
// release_date : $CGAL_Date: 1999/10/12 $
//
// file : include/CGAL/Cartesian/Direction_3.C
// package : C3 (3.6.2)
// source : include/CGAL/Cartesian/Direction_3.C
// revision : $Revision$
// revision_date : $Date$
// author(s) : Andreas.Fabri@sophia.inria.fr
//
// coordinator : INRIA Sophia-Antipolis (Herve.Bronnimann@sophia.inria.fr)
//
// ======================================================================
#ifndef CGAL_CARTESIAN_REDEFINE_NAMES_3_H
#define CGAL_CTAG
#endif
#ifdef CGAL_CFG_TYPENAME_BUG
#define typename
#endif
#ifndef CGAL_CARTESIAN_DIRECTION_3_C
#define CGAL_CARTESIAN_DIRECTION_3_C
CGAL_BEGIN_NAMESPACE
template < class R >
inline
_Threetuple<typename R::FT>*
DirectionC3<R CGAL_CTAG>::ptr() const
{
return (_Threetuple<FT>*)PTR;
}
template < class R >
DirectionC3<R CGAL_CTAG>::
DirectionC3()
{
PTR = new _Threetuple<FT>();
}
template < class R >
DirectionC3<R CGAL_CTAG>::
DirectionC3(const DirectionC3<R CGAL_CTAG> &d)
: Handle(d) {}
template < class R >
DirectionC3<R CGAL_CTAG>::
DirectionC3(const typename DirectionC3<R CGAL_CTAG>::Vector_3 &v)
: Handle(v) {}
template < class R >
DirectionC3<R CGAL_CTAG>::
DirectionC3(const typename DirectionC3<R CGAL_CTAG>::FT &x,
const typename DirectionC3<R CGAL_CTAG>::FT &y,
const typename DirectionC3<R CGAL_CTAG>::FT &z)
{
PTR = new _Threetuple<typename R::FT>(x, y, z);
}
template < class R >
DirectionC3<R CGAL_CTAG>::~DirectionC3()
{
}
template < class R >
DirectionC3<R CGAL_CTAG> &
DirectionC3<R CGAL_CTAG>::operator=(const DirectionC3<R CGAL_CTAG> &d)
{
Handle::operator=(d);
return *this;
}
template < class R >
bool
DirectionC3<R CGAL_CTAG>::operator==(const DirectionC3<R CGAL_CTAG> &d) const
{
return equal_directionC3(dx(), dy(), dz(), d.dx(), d.dy(), d.dz());
}
template < class R >
inline
bool
DirectionC3<R CGAL_CTAG>::operator!=(const DirectionC3<R CGAL_CTAG> &d) const
{
return !(*this == d);
}
template < class R >
long
DirectionC3<R CGAL_CTAG>::id() const
{
return (long) PTR;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::Vector_3
DirectionC3<R CGAL_CTAG>::to_vector() const
{
return Vector_3(*this);
}
template < class R >
inline
DirectionC3<R CGAL_CTAG>
DirectionC3<R CGAL_CTAG>::
transform(const typename DirectionC3<R CGAL_CTAG>::Aff_transformation_3 &t) const
{
return t.transform(*this);
}
template < class R >
inline
DirectionC3<R CGAL_CTAG>
DirectionC3<R CGAL_CTAG>::operator-() const
{
return DirectionC3<R>(-dx(), -dy(), -dz());
}
template < class R >
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::delta(int i) const
{
CGAL_kernel_precondition( i >= 0 && i <= 2 );
return (i==0) ? dx() :
(i==1) ? dy() : dz() ;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::dx() const
{
return ptr()->e0;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::dy() const
{
return ptr()->e1;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::dz() const
{
return ptr()->e2;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::hdx() const
{
return ptr()->e0;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::hdy() const
{
return ptr()->e1;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::hdz() const
{
return ptr()->e2;
}
template < class R >
inline
typename DirectionC3<R CGAL_CTAG>::FT
DirectionC3<R CGAL_CTAG>::hw() const
{
return FT(1);
}
#ifndef CGAL_NO_OSTREAM_INSERT_DIRECTIONC3
template < class R >
std::ostream &operator<<(std::ostream &os, const DirectionC3<R CGAL_CTAG> &d)
{
typename DirectionC3<R CGAL_CTAG>::Vector_3 v = d.to_vector();
switch(os.iword(IO::mode)) {
case IO::ASCII :
return os << v.x() << ' ' << v.y() << ' ' << v.z();
case IO::BINARY :
write(os, v.x());
write(os, v.y());
write(os, v.z());
return os;
default:
os << "DirectionC3(" << v.x() << ", " << v.y() << ", " << v.z() << ")";
return os;
}
}
#endif // CGAL_NO_OSTREAM_INSERT_DIRECTIONC3
#ifndef CGAL_NO_ISTREAM_EXTRACT_DIRECTIONC3
template < class R >
std::istream &operator>>(std::istream &is, DirectionC3<R CGAL_CTAG> &p)
{
typename R::FT x, y, z;
switch(is.iword(IO::mode)) {
case IO::ASCII :
is >> x >> y >> z;
break;
case IO::BINARY :
read(is, x);
read(is, y);
read(is, z);
break;
default:
std::cerr << "" << std::endl;
std::cerr << "Stream must be in ascii or binary mode" << std::endl;
break;
}
p = DirectionC3<R CGAL_CTAG>(x, y, z);
return is;
}
#endif // CGAL_NO_ISTREAM_EXTRACT_DIRECTIONC3
CGAL_END_NAMESPACE
#ifdef CGAL_CFG_TYPENAME_BUG
#undef typename
#endif
#endif // CGAL_CARTESIAN_DIRECTION_3_C