趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
LineF.h
Go to the documentation of this file.
1 #ifndef HRK_LINE_H
2 #define HRK_LINE_H
3 
9 #include "PointF.h"
10 
11 
12 namespace hrk
13 {
14  class LineF
15  {
16  public:
17  LineF(const PointF& from, const PointF& to);
18  LineF(double from_x, double from_y, double to_x, double to_y);
19  LineF(void);
20 
21  bool is_valid(void) const;
22 
23  PointF from(void) const;
24  PointF to(void) const;
25 
26  private:
27  PointF from_;
28  PointF to_;
29  };
30 }
31 
32 #endif
位置
Definition: PointF.h:12
Definition: LineF.h:14
位置