MINT2
HyperLine.h
Go to the documentation of this file.
1 
10 #ifndef HYPERLINE_HH
11 #define HYPERLINE_HH
12 
13 // HyperPlot includes
14 #include "Mint/MessageService.h"
15 #include "Mint/HyperPoint.h"
16 #include "Mint/NPlane.h"
17 
18 // Root includes
19 
20 // std includes
21 
22 
23 class HyperLine : public NPlane {
24 
25  public:
26 
27  HyperLine(const HyperPoint& a, const HyperPoint& b);
28 
29  virtual void print(std::ostream& os=std::cout, int endline=1) const;
30 
31  //const HyperPoint& getDirection() const{ return this->getDirection(0); }
32 
33  ~HyperLine();
34 
35 };
36 
37 
38 
39 #endif
40 
virtual void print(std::ostream &os=std::cout, int endline=1) const
Definition: HyperLine.cpp:14
Definition: NPlane.h:30
HyperLine(const HyperPoint &a, const HyperPoint &b)
Definition: HyperLine.cpp:5