// ====================================================================== // // Copyright (c) 2000 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 : include/CGAL/Cartesian/Direction_3.h // revision : $Revision$ // revision_date : $Date$ // author(s) : Andreas Fabri // coordinator : INRIA Sophia-Antipolis (Mariette.Yvinec@sophia.inria.fr) // // ====================================================================== #ifndef CGAL_CARTESIAN_DIRECTION_3_H #define CGAL_CARTESIAN_DIRECTION_3_H #include #include CGAL_BEGIN_NAMESPACE template < class R_ > class DirectionC3 CGAL_ADVANCED_KERNEL_PARTIAL_SPEC : public Handle_for< Threetuple > { public: typedef R_ R; typedef typename R::FT FT; typedef typename R::RT RT; #ifndef CGAL_CFG_NO_ADVANCED_KERNEL typedef DirectionC3 Self; typedef typename R::Vector_3 Vector_3; typedef typename R::Aff_transformation_3 Aff_transformation_3; #else typedef DirectionC3 Self; typedef typename R::Vector_3_base Vector_3; typedef typename R::Aff_transformation_3_base Aff_transformation_3; #endif DirectionC3(); DirectionC3(const Self &d); DirectionC3(const Vector_3 &v); DirectionC3(const FT &x, const FT &y, const FT &z); ~DirectionC3(); bool operator==(const Self &d) const; bool operator!=(const Self &d) const; Vector_3 to_vector() const; Self transform(const Aff_transformation_3 &t) const; Self operator-() const; FT delta(int i) const; FT dx() const; FT dy() const; FT dz() const; FT hdx() const; FT hdy() const; FT hdz() const; FT hw() const; }; CGAL_END_NAMESPACE #ifndef CGAL_CARTESIAN_CLASS_DEFINED #include #endif #endif // CGAL_CARTESIAN_DIRECTION_3_H