Naming vtkActors

In VTK 9.2, you can use SetObjectName()/GetObjectName() to label your actors.

If you’re using Python, you can add custom attributes to VTK objects:

a = vtk.vtkActor()
a.name = 'Kevin'