#include <mitkSurfaceVtkMapper3D.h>


Public Member Functions | |
| LocalStorage () | |
| ~LocalStorage () | |
Public Attributes | |
| vtkActor * | m_Actor |
| vtkPolyDataMapper * | m_VtkPolyDataMapper |
| vtkPolyDataNormals * | m_VtkPolyDataNormals |
| vtkPlaneCollection * | m_ClippingPlaneCollection |
| itk::TimeStamp | m_ShaderTimestampUpdate |
Definition at line 124 of file mitkSurfaceVtkMapper3D.h.
| mitk::SurfaceVtkMapper3D::LocalStorage::LocalStorage | ( | ) | [inline] |
Definition at line 135 of file mitkSurfaceVtkMapper3D.h.
{
m_VtkPolyDataMapper = vtkOpenGLPolyDataMapper::New();
m_VtkPolyDataNormals = vtkPolyDataNormals::New();
m_Actor = vtkActor::New();
m_ClippingPlaneCollection = vtkPlaneCollection::New();
m_Actor->SetMapper(m_VtkPolyDataMapper);
}
| mitk::SurfaceVtkMapper3D::LocalStorage::~LocalStorage | ( | ) | [inline] |
Definition at line 145 of file mitkSurfaceVtkMapper3D.h.
{
m_VtkPolyDataMapper->Delete();
m_VtkPolyDataNormals->Delete();
m_Actor->Delete();
m_ClippingPlaneCollection->Delete();
}
Definition at line 128 of file mitkSurfaceVtkMapper3D.h.
Referenced by mitk::SurfaceVtkMapper3D::ApplyProperties(), mitk::SurfaceVtkMapper3D::GenerateData(), mitk::SurfaceVtkMapper3D::GetVtkProp(), and mitk::SurfaceVtkMapper3D::ResetMapper().
| vtkPlaneCollection* mitk::SurfaceVtkMapper3D::LocalStorage::m_ClippingPlaneCollection |
Definition at line 131 of file mitkSurfaceVtkMapper3D.h.
Referenced by mitk::SurfaceVtkMapper3D::ApplyProperties(), and mitk::SurfaceVtkMapper3D::CheckForClippingProperty().
Definition at line 133 of file mitkSurfaceVtkMapper3D.h.
Referenced by mitk::SurfaceVtkMapper3D::ApplyProperties().
| vtkPolyDataMapper* mitk::SurfaceVtkMapper3D::LocalStorage::m_VtkPolyDataMapper |
Definition at line 129 of file mitkSurfaceVtkMapper3D.h.
Referenced by mitk::SurfaceVtkMapper3D::ApplyProperties(), and mitk::SurfaceVtkMapper3D::GenerateData().
| vtkPolyDataNormals* mitk::SurfaceVtkMapper3D::LocalStorage::m_VtkPolyDataNormals |
Definition at line 130 of file mitkSurfaceVtkMapper3D.h.
Referenced by mitk::SurfaceVtkMapper3D::GenerateData().
1.7.2