#ifndef _$PROJECT_NAME$SOURCE01_H_ #define _$PROJECT_NAME$SOURCE01_H_ #include "vtkMath.h" #include class VectorMath{ public: VectorMath(); ~VectorMath(); void SetData(std::vector pointsX1, std::vector pointsX2, std::vector pointsY1, std::vector pointsY2, std::vector pointsZ1, std::vector pointsZ2); void Run(); /* int[3]* GetPoints(); double[3]* GetScales(); double GetAngle();*/ private: //float[3] _points; int _pointx1a; int _pointx1b; int _pointx2a; int _pointx2b; int _pointy1a; int _pointy1b; int _pointy2a; int _pointy2b; int _pointz1a; int _pointz1b; int _pointz2a; int _pointz2b; vtkMath *_math; }; #endif