GrabBag/App/DiscHolePose/DiscHolePoseConfig/Inc/AlgorithmParamConverter.h

22 lines
463 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef ALGORITHMPARAMCONVERTER_H
#define ALGORITHMPARAMCONVERTER_H
#include "IVrConfig.h"
#include "SG_baseDataType.h"
// 砂轮盘孔定位算法参数(仅 cornerParam
struct DiscHoleAlgorithmParams
{
DiscHoleAlgorithmParams();
SSG_cornerParam cornerParam;
};
class AlgorithmParamConverter
{
public:
static DiscHoleAlgorithmParams ToDiscHoleAlgorithmParams(const VrAlgorithmParams& algorithmParams);
};
#endif // ALGORITHMPARAMCONVERTER_H