|
CFx SDK Documentation 2024 SP0
|
#include <RxRcsFileServices.h>
Public Member Functions | |
| virtual OdPointCloudScanDatabasePtr | readRcsFile (const OdString &filePath) const =0 |
| virtual OdPointCloudScanDatabasePtr | readRcsFile (OdStreamBuf *pFileBuff) const =0 |
| virtual OdPointCloudProjectDatabasePtr | readRcpFile (const OdString &filePath) const =0 |
| virtual OdPointCloudConverterPtr | getPointCloudConverter (OdPointCloudDataSourcePtr pDataSource, OdPointCloudConverterParamsPtr pParams=NULL) const =0 |
| virtual OdRcsDataManagerPtr | getRcsDataManager (OdPointCloudScanDatabasePtr pScanDb, OdPointCloudProjectDatabasePtr pHostProjectDb=NULL) const =0 |
Public Member Functions inherited from OdRxModule | |
| ODRX_DECLARE_MEMBERS (OdRxModule) | |
| virtual void * | sysData ()=0 |
| virtual void | deleteModule ()=0 |
| virtual void | initApp ()=0 |
| virtual void | uninitApp ()=0 |
| virtual OdString | moduleName () const =0 |
Public Member Functions inherited from OdRxObject | |
| ODRX_HEAP_OPERATORS () | |
| OdRxObject () | |
| virtual | ~OdRxObject () |
| virtual OdRxObject * | queryX (const OdRxClass *pClass) const |
| virtual OdRxObject * | x (const OdRxClass *pClass) const |
| virtual OdRxClass * | isA () const |
| virtual void | addRef ()=0 |
| virtual void | release ()=0 |
| virtual long | numRefs () const |
| bool | isKindOf (const OdRxClass *pClass) const |
| virtual OdRxObjectPtr | clone () const |
| virtual void | copyFrom (const OdRxObject *pSource) |
| virtual OdRx::Ordering | comparedTo (const OdRxObject *pOther) const |
| virtual bool | isEqualTo (const OdRxObject *pOther) const |
Additional Inherited Members | |
Static Public Member Functions inherited from OdRxObject | |
| static OdRxObjectPtr | cast (const OdRxObject *pointer) |
| static OdRxClass * | desc () |
<group OdRx_Classes>
This is an interface class for the module that provides loading point cloud data from .rcs/.rcp files.
Definition at line 50 of file RxRcsFileServices.h.
|
pure virtual |
Creates a new point cloud converter with user implemented data source and with converter parameters to convert user point cloud data to .rcs file.
| pDataSource | [in] Pointer to point cloud data source instance. |
| pParams | [in] Pointer to conversion parameters. |
|
pure virtual |
Creates a new data manager object for the specified point cloud scan database.
| pScanDb | [in] Pointer to the point cloud scan database. |
| pHostProjectDb | [in] Pointer to the host point cloud project database. |
|
pure virtual |
Creates a new point cloud project database object and populates it with the data from the corresponding point cloud project file (.rcp file) specified by its file path.
| filePath | [in] Path to the .rcp file. |
|
pure virtual |
Creates a new point cloud scan database object and populates it with the data read from a point cloud scan file (.rcs file) specified by its file path.
| filePath | [in] Path to the .rcs file. |
|
pure virtual |
Creates a new point cloud scan database object and populates it with the data read from a point cloud scan file (.rcs file) specified by the corresponding file buffer.
| pFileBuff | [in] Poinert to the file buffer, associated with the .rcs file. |