refactor: rename Vtk classes by removing the vtk prefix to follow project naming conventions

This commit is contained in:
AndreaRigoni
2026-04-08 15:14:55 +00:00
parent 8a01ee7f40
commit 77f00a2b8a
66 changed files with 494 additions and 477 deletions

View File

@@ -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;