Go to the source code of this file.
◆ 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 202 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 223 of file vtkMappedUnstructuredGrid.h.
◆ vtkMakeMappedUnstructuredGrid
#define vtkMakeMappedUnstructuredGrid |
( |
| _className, |
|
|
| _impl ) |
◆ vtkMakeMappedUnstructuredGridWithIter
#define vtkMakeMappedUnstructuredGridWithIter |
( |
| _className, |
|
|
| _impl, |
|
|
| _cIter ) |
Value:
#define vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, _exportDecl)
Definition at line 284 of file vtkMappedUnstructuredGrid.h.