24 lines
512 B
C++
24 lines
512 B
C++
#ifndef ALGORITHMPARAMCONVERTER_H
|
|
#define ALGORITHMPARAMCONVERTER_H
|
|
|
|
#include "IVrConfig.h"
|
|
#include "SG_baseDataType.h"
|
|
#include "workpieceHolePositioning_Export.h"
|
|
|
|
// 轮胎孔定位算法参数
|
|
struct TireHoleAlgorithmParams
|
|
{
|
|
TireHoleAlgorithmParams();
|
|
|
|
SSG_cornerParam cornerParam;
|
|
WD_tireParam tireParam;
|
|
};
|
|
|
|
class AlgorithmParamConverter
|
|
{
|
|
public:
|
|
static TireHoleAlgorithmParams ToTireHoleAlgorithmParams(const VrAlgorithmParams& algorithmParams);
|
|
};
|
|
|
|
#endif // ALGORITHMPARAMCONVERTER_H
|