cgal/Old_Packages/C3/include/CGAL/Cartesian/Point_3.h

107 lines
2.8 KiB
C++

// ==========================================================================
//
// Copyright (c) 1998, 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 : include/CGAL/Cartesian/Point_3.h
// source : include/CGAL/Cartesian/Point_3.h
// revision : $Revision$
// revision_date : $Date$
// author(s) : Andreas Fabri
//
// coordinator : INRIA Sophia-Antipolis (Herve.Bronnimann@sophia.inria.fr)
//
// ==========================================================================
#ifndef CGAL_CARTESIAN_POINT_3_H
#define CGAL_CARTESIAN_POINT_3_H
#ifndef CGAL_CARTESIAN_REDEFINE_NAMES_3_H
#include <CGAL/Cartesian/redefine_names_3.h>
#endif
#ifndef CGAL_CARTESIAN_THREETUPLE_H
#include <CGAL/Threetuple.h>
#endif // CGAL_CARTESIAN_THREETUPLE_H
CGAL_BEGIN_NAMESPACE
template < class _R >
class PointC3
#ifndef CGAL_CFG_NO_ADVANCED_KERNEL
// This is a partial specialization
<_R,Cartesian_tag>
#endif
: public Handle
{
public:
typedef _R R;
typedef typename R::FT FT;
typedef typename R::RT RT;
#ifndef CGAL_CFG_NO_ADVANCED_KERNEL
typedef PointC3<R CGAL_CTAG> Self;
typedef typename R::Vector_3 Vector_3;
typedef typename R::Aff_transformation_3 Aff_transformation_3;
#else
typedef PointC3<R> Self;
typedef typename R::Vector_3_base Vector_3;
typedef typename R::Aff_transformation_3_base Aff_transformation_3;
#endif
PointC3();
PointC3(const Origin &o);
PointC3(const Self &p);
PointC3(const Vector_3 &v);
PointC3(const FT &x, const FT &y, const FT &z);
PointC3(const FT &x, const FT &y, const FT &z, const FT &hw);
~PointC3();
Self &operator=(const Self &p);
bool operator==(const Self &p) const;
bool operator!=(const Self &p) const;
long id() const;
FT x() const;
FT y() const;
FT z() const;
FT hx() const;
FT hy() const;
FT hz() const;
FT hw() const;
FT cartesian(int i) const;
FT operator[](int i) const;
FT homogeneous(int i) const;
int dimension() const;
Bbox_3 bbox() const;
Self transform( const Aff_transformation_3 &) const;
private:
_Threetuple<FT>* ptr() const;
};
CGAL_END_NAMESPACE
#ifndef CGAL_CARTESIAN_CLASS_DEFINED
#ifndef CGAL_CARTESIAN_POINT_3_C
#include <CGAL/Cartesian/Point_3.C>
#endif // CGAL_CARTESIAN_POINT_3_C
#endif
#endif // CGAL_CARTESIAN_POINT_3_H