Hi,<br><br>I am trying to debug some mesh partitioning algorithm, and
need to label the points of the new a unstructured vtk (sub-)grid
according to the global numbering of the old mesh. I have tried the
vtkLabeledDataMapper in combination with vtkIdFilter after setting the
global numbering as field data of the unstructured mesh given as input
to the vtkIdFilter, but I guess this is not the way to go (at least, I
can't get it to work).<br>
<br>This is my, probably retarded, attempt:<br><br> def add_point_labels(self, labels=None):<br> ldm = vtk.vtkLabeledDataMapper()<br> ldm.SetLabelFormat("%g")<br>
ids = vtk.vtkIdFilter()<br> if labels != None:<br> arr = vtk.vtkIdTypeArray()<br> arr.SetVoidArray(labels, len(labels), 1)<br> arr.SetName("point labels")<br> self.vtkgrid.GetFieldData().AddArray(arr)<br>
ids.SetInput(self.vtkgrid)<br> ids.SetFieldData(1)<br> ldm.SetFieldDataArray(0)<br> ldm.SetLabelModeToLabelFieldData()<br> else:<br> ids.SetInput(self.vtkgrid)<br>
ids.PointIdsOn()<br> ids.FieldDataOn()<br><br> ldm.SetInputConnection(ids.GetOutputPort())<br> ldm.GetLabelTextProperty().SetColor(0, 0, 0)<br> ldm.GetLabelTextProperty().BoldOn()<br>
pointLabels = vtk.vtkActor2D()<br clear="all"><br>From
my understanding of the nightly documentation, it should be possible to
do what I want, but the example provided online doesn't cover this
corner. Any help is greatly appreciated.<br>
<br>Sincerely,<br clear="all"><br>-- <br>Ola Skavhaug<br>