Classes | Functions
simple_geo Namespace Reference

Classes

class  Area
 
struct  Point2D
 

Functions

Point2D operator+ (Point2D const &a, Point2D const &b)
 
Point2D operator* (Point2D const &p, double f)
 
Point2D operator/ (Point2D const &p, double f)
 
template<typename Stream >
Stream & operator<< (Stream &out, Point2D const &p)
 

Function Documentation

Point2D simple_geo::operator* ( Point2D const &  p,
double  f 
)

Definition at line 68 of file GeometryTestAlg.cxx.

69  { return { p.y * f, p.z * f }; }
p
Definition: test.py:223
Point2D simple_geo::operator+ ( Point2D const &  a,
Point2D const &  b 
)

Definition at line 66 of file GeometryTestAlg.cxx.

67  { return { a.y + b.y, a.z + b.z }; }
const double a
static bool * b
Definition: config.cpp:1043
Point2D simple_geo::operator/ ( Point2D const &  p,
double  f 
)

Definition at line 70 of file GeometryTestAlg.cxx.

71  { return { p.y / f, p.z / f }; }
p
Definition: test.py:223
template<typename Stream >
Stream& simple_geo::operator<< ( Stream &  out,
Point2D const &  p 
)

Definition at line 73 of file GeometryTestAlg.cxx.

74  { out << "( " << p.y << " ; " << p.z << " )"; return out; }
p
Definition: test.py:223