#pragma once #include "vector.h" #include "Plane.h" namespace NCalibrate { // 3 2 // _____ // | | // |___| // 0 1 class CCell : public CVector { public: CCell(void); ~CCell(void); void Create(double x0, double x1, double x2, double x3); int Create(CVector& m, CVector& n, CVector& z); double LineValue(double m, double n); protected: CLine2D mn; }; }; using namespace NCalibrate;