refactor: rename Vtk classes by removing the vtk prefix to follow project naming conventions
This commit is contained in:
@@ -45,17 +45,18 @@ class vtkPiecewiseFunction;
|
||||
namespace uLib {
|
||||
namespace Vtk {
|
||||
|
||||
class vtkVoxImage : public Puppet {
|
||||
class VoxImage : public Puppet {
|
||||
public:
|
||||
typedef Abstract::VoxImage Content;
|
||||
|
||||
vtkVoxImage(Content &content);
|
||||
VoxImage(Content &content);
|
||||
|
||||
~vtkVoxImage();
|
||||
~VoxImage();
|
||||
|
||||
void GetContent();
|
||||
void UpdateFromContent();
|
||||
|
||||
void SetContent();
|
||||
void UpdateToContent();
|
||||
uLib::Object* GetContent() const override { return (uLib::Object*)&m_Content; }
|
||||
|
||||
vtkProp3D *GetProp() override { return m_Asm; }
|
||||
|
||||
@@ -89,7 +90,7 @@ private:
|
||||
vtkXMLImageDataReader *m_Reader;
|
||||
vtkXMLImageDataWriter *m_Writer;
|
||||
|
||||
vtkVoxImage::Content &m_Content;
|
||||
VoxImage::Content &m_Content;
|
||||
|
||||
float m_Window;
|
||||
float m_Level;
|
||||
|
||||
Reference in New Issue
Block a user