You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
958 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "xjobject.h"
#include "AlgoPointCloud.h"
class XJ_OM_EXPORT OMPoindCloud : public CXJObject
{
public:
friend class CXJObjectManager;
friend class CXJObjectGroup;
/*************************************************************************
*函数名称: LoadData
*函数功能: 给出STL模型路径调用算法库函数来导入Mesh
*输入参数:
*输出参数:
*返 回 值: int型返回0-----------------------成功
返回1------------------------失败
***************************************************************************/
int LoadData(const char* fname);
const AlgoPointCloud* GetData() const {return m_PointCloud;}
void GetVerData(std::vector<float>& data);
//**************************对象操作************************
virtual void CopyProperty(const CXJObject* pObj);
protected:
OMPoindCloud(void);
OMPoindCloud(OMPoindCloud *obj);
~OMPoindCloud(void);
virtual OMPoindCloud* Copy();
private:
AlgoPointCloud* m_PointCloud;
};