marLine.h
Go to the documentation of this file.00001
00002
00004
00005 #ifndef __marLine_h
00006 #define __marLine_h
00007
00008 class marLine
00009 {
00010 public:
00011 marLine();
00012 marLine(double x1, double y1, double x2, double y2);
00013 marLine(double a, double b);
00014 void getNormal(double *a, double *b);
00015 void getIntersect(double a, double b, double c, double *x, double *y);
00016 double getA();
00017 double getB();
00018 double getC();
00019 virtual ~marLine();
00020
00021 private:
00022 double a;
00023 double b;
00024 double c;
00025 };
00026
00027 #endif // !defined(AFX_MARLINE_H__28F8F1C4_E5F2_48C7_94E0_3C8BEA226D06__INCLUDED_)