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

@@ -41,12 +41,12 @@ namespace Vtk {
* mathematical state of a Cylinder object. It manages the alignment
* between VTK's Y-centered cylinder and uLib's Z-based coordinate system.
*/
class vtkCylinder : public Puppet {
typedef Cylinder Content;
class Cylinder : public Puppet {
typedef uLib::Cylinder Content;
public:
vtkCylinder(Content *content);
virtual ~vtkCylinder();
Cylinder(Content *content);
virtual ~Cylinder();
/** Synchronizes the VTK actor with the uLib model matrix and vice-versa */
virtual void Update() override;