Go to the source code of this file.
|
#define | vtkMakeExportedMappedUnstructuredGrid(_className, _impl, _exportDecl) |
|
#define | vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, _exportDecl) |
|
#define | vtkMakeMappedUnstructuredGrid(_className, _impl) vtkMakeExportedMappedUnstructuredGrid(_className, _impl, ) |
|
#define | vtkMakeMappedUnstructuredGridWithIter(_className, _impl, _cIter) vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, ) |
|
◆ vtkMakeExportedMappedUnstructuredGrid
#define vtkMakeExportedMappedUnstructuredGrid |
( |
|
_className, |
|
|
|
_impl, |
|
|
|
_exportDecl |
|
) |
| |
Value:
{ \
public: \
static _className*
New(); \
\
protected: \
_className() \
{ \
_impl* i = _impl::New(); \
i->Delete(); \
} \
~_className() override {} \
\
private: \
_className(const _className&); \
void operator=(const _className&); \
}
Allows datasets with arbitrary storage layouts to be used with VTK.
void SetImplementation(ImplementationType *impl)
static vtkPointSet * New()
Standard instantiation method.
Definition at line 208 of file vtkMappedUnstructuredGrid.h.
◆ vtkMakeExportedMappedUnstructuredGridWithIter
#define vtkMakeExportedMappedUnstructuredGridWithIter |
( |
|
_className, |
|
|
|
_impl, |
|
|
|
_cIter, |
|
|
|
_exportDecl |
|
) |
| |
Value:
{ \
public: \
vtkTypeMacro(_className, SelfType); \
static _className*
New(); \
\
protected: \
_className() \
{ \
_impl* i = _impl::New(); \
i->Delete(); \
} \
~_className() override {} \
\
private: \
_className(const _className&); \
void operator=(const _className&); \
}
Definition at line 229 of file vtkMappedUnstructuredGrid.h.
◆ vtkMakeMappedUnstructuredGrid
◆ vtkMakeMappedUnstructuredGridWithIter