Go to the documentation of this file.00001
00002 #ifndef _VIFA_IMP_LINE_H_
00003 #define _VIFA_IMP_LINE_H_
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include <vbl/vbl_ref_count.h>
00019 #include <vgl/vgl_point_2d.h>
00020 #include <vgl/vgl_vector_2d.h>
00021 #include <vgl/vgl_line_segment_2d.h>
00022
00023 template <class Type>
00024 class vifa_imp_line : public vbl_ref_count, public vgl_line_segment_2d<Type>
00025 {
00026 protected:
00027
00028 double dx_;
00029
00030
00031 double dy_;
00032
00033 public:
00034
00035 inline vifa_imp_line(void) {}
00036
00037
00038 vifa_imp_line(vifa_imp_line const& l)
00039 : vbl_ref_count(), vgl_line_segment_2d<Type>(l), dx_(l.dx_), dy_(l.dy_) {}
00040
00041
00042 vifa_imp_line(vgl_point_2d<Type> const& p1,
00043 vgl_point_2d<Type> const& p2);
00044
00045
00046 vifa_imp_line(vgl_vector_2d<Type> d,
00047 vgl_point_2d<Type> m);
00048
00049
00050 vifa_imp_line(Type a, Type b, Type c);
00051
00052
00053 inline bool near_zero(double x) const { return x < 1e-6; }
00054
00055
00056 double get_dir_x(void);
00057
00058
00059 double get_dir_y(void);
00060
00061
00062 double length(void);
00063
00064
00065 void set_points(vgl_point_2d<Type> const& p1,
00066 vgl_point_2d<Type> const& p2);
00067
00068
00069 void project_2d_pt(const Type& p,
00070 const Type& q,
00071 Type& x,
00072 Type& y) const;
00073
00074 vgl_point_2d<Type> project_2d_pt(const vgl_point_2d<Type>& t) const;
00075
00076
00077 double find_t(const vgl_point_2d<Type>& p);
00078
00079
00080 vgl_point_2d<Type> find_at_t(double t);
00081 };
00082
00083 #endif // _VIFA_IMP_LINE_H_