Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Point_3.h File Reference
Include dependency graph for Point_3.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Point_3< T >
 

Functions

template<class R >
CGAL_END_NAMESPACE
CGAL_BEGIN_NAMESPACE bool 
operator== (const Origin &o, const Point_3< R > &p)
 
template<class R >
bool operator!= (const Origin &o, const Point_3< R > &p)
 
template<class R >
std::ostream & operator<< (std::ostream &os, const Point_3< R > &p)
 
template<class R >
std::istream & operator>> (std::istream &is, Point_3< R > &p)
 

Function Documentation

bool operator!= ( const Origin o,
const Point_3< R > &  p 
)
inline

Definition at line 185 of file Point_3.h.

186 { return p != o; }
std::ostream& operator<< ( std::ostream &  os,
const Point_3< R > &  p 
)

Definition at line 193 of file Point_3.h.

194 {
195  typedef typename R::Point_3_base RPoint_3;
196  return os << (const RPoint_3& )p;
197 }
CGAL_END_NAMESPACE CGAL_BEGIN_NAMESPACE bool operator== ( const Origin o,
const Point_3< R > &  p 
)
inline

Definition at line 179 of file Point_3.h.

180 { return p == o; }
std::istream& operator>> ( std::istream &  is,
Point_3< R > &  p 
)

Definition at line 202 of file Point_3.h.

203 {
204  typedef typename R::Point_3_base RPoint_3;
205  return is >> (RPoint_3& )p;
206 }