67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
|
|
#ifndef _GEOMETRYPARAMAKEMOVE_H_
|
|||
|
|
#define _GEOMETRYPARAMAKEMOVE_H_
|
|||
|
|
|
|||
|
|
#include "geometryModelParaBase.h"
|
|||
|
|
#include <QString>
|
|||
|
|
#include <QMultiHash>
|
|||
|
|
namespace Geometry
|
|||
|
|
{
|
|||
|
|
class GeometrySet;
|
|||
|
|
class GEOMETRYAPI GeometryParaMakeMove : public GeometryModelParaBase
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GeometryParaMakeMove();
|
|||
|
|
~GeometryParaMakeMove() = default;
|
|||
|
|
|
|||
|
|
void setOptionIndex(int index);
|
|||
|
|
int getOptionIndex();
|
|||
|
|
|
|||
|
|
void appendBody(Geometry::GeometrySet* set, int bodyindex);
|
|||
|
|
QMultiHash<Geometry::GeometrySet*, int> getBodys();
|
|||
|
|
|
|||
|
|
void setSaveOrigion(bool s);
|
|||
|
|
bool getSaveOrigion();
|
|||
|
|
|
|||
|
|
void setBasePoint(double* basept);
|
|||
|
|
void getBasePoint(double* basept);
|
|||
|
|
|
|||
|
|
void setEndPoint(double* endpt);
|
|||
|
|
void getsetEndPoint(double* endpt);
|
|||
|
|
|
|||
|
|
void setReverse(bool s);
|
|||
|
|
bool getReverse();
|
|||
|
|
|
|||
|
|
void setLength(double l);
|
|||
|
|
double getLength();
|
|||
|
|
|
|||
|
|
void setDirection(double* dir);
|
|||
|
|
void getDirection(double* dir);
|
|||
|
|
|
|||
|
|
void setOriSet(Geometry::GeometrySet* s);
|
|||
|
|
Geometry::GeometrySet* getOriSet();
|
|||
|
|
|
|||
|
|
///数据写入工程文件
|
|||
|
|
QDomElement& writeToProjectFile(QDomDocument* doc, QDomElement* parent) override;
|
|||
|
|
///从工程文件读入数据
|
|||
|
|
virtual void readDataFromProjectFile(QDomElement* e) override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
int _optionindex{};
|
|||
|
|
QMultiHash<Geometry::GeometrySet*, int>_solidHash{};
|
|||
|
|
Geometry::GeometrySet* _oriset{};
|
|||
|
|
double _startpoint[3]{};
|
|||
|
|
double _endpoint[3]{};
|
|||
|
|
|
|||
|
|
double _length{10};
|
|||
|
|
double _direction[3]{};
|
|||
|
|
bool _reverse{};
|
|||
|
|
|
|||
|
|
bool _saveorigion{};
|
|||
|
|
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif
|