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.
26 lines
439 B
C++
26 lines
439 B
C++
|
|
#pragma once
|
|
#include "XJOSGObject.h"
|
|
#include "XJObjectManager/OMPointCloud.h"
|
|
#include <osg/Geometry>
|
|
#include <osgFX/Effect>
|
|
|
|
|
|
class COSGPointCloud : public CXJOSGObject
|
|
{
|
|
public:
|
|
COSGPointCloud();
|
|
virtual ~COSGPointCloud();
|
|
COSGPointCloud(CXJObject * pobj);
|
|
|
|
virtual int SetValue(CXJObject *obj);
|
|
|
|
osg::Geode* CreateObject();
|
|
|
|
int Update(EOSGUpdateType updateType = UPDATE_ALL);
|
|
|
|
protected:
|
|
|
|
private:
|
|
OMPoindCloud *m_obj;
|
|
}; |