codac  1.5.7
codac_Beacon.h
1 
11 #ifndef __CODAC_BEACON_H__
12 #define __CODAC_BEACON_H__
13 
14 #include "codac_Vector.h"
15 #include "codac_IntervalVector.h"
16 
17 namespace codac
18 {
19  class Beacon
20  {
21  public:
22 
23  Beacon(double x = 0., double y = 0., double z = 0.);
24  Beacon(const Vector& pos);
25  Beacon(const IntervalVector& pos_box);
26  double x() const;
27  double y() const;
28  double z() const;
29  const Vector& pos() const;
30  const IntervalVector& pos_box() const;
31 
32  protected:
33 
34  Vector m_pos = Vector(3, 0.);
35  IntervalVector m_pos_box = IntervalVector(3);
36  };
37 }
38 
39 #endif
FixPoint of a separator The fixpoint of a separator is computed by calling the "::"separate function ...
Definition: codac_capd_helpers.h:9