refactor: update Geant scene visualization to use PhysicalVolumes instead of raw Solids for improved placement and context handling.

This commit is contained in:
AndreaRigoni
2026-04-16 15:09:42 +00:00
parent e4379811a3
commit 64bfd92e34
17 changed files with 288 additions and 169 deletions

View File

@@ -22,14 +22,14 @@ namespace Vtk {
*/
class TessellatedSolid : public GeantSolid {
public:
TessellatedSolid(Geant::TessellatedSolid *content);
TessellatedSolid(Geant::PhysicalVolume *content);
virtual ~TessellatedSolid();
virtual void Update() override;
virtual void UpdateGeometry() override;
protected:
Geant::TessellatedSolid *m_TessContent;
Geant::TessellatedSolid *m_TessSolid;
};
} // namespace Vtk