Hi All,<br><br>My question relates to legacy VTK file formats. For a polydata .vtk file with points and lines how can identify which points are being used by a particular line in paraview.<br><br>I would like to identify the points used by each line and then use them for calculations in a custom filter. I have given an example below to demonstrate what I mean.
<br><br>#vtk DataFile Version 2.0<br>My data<br>ASCII<br>DATASET POLYDATA<br>POINTS 6 float<br>0.0 0.0 0.0<br>1.0 1.0 1.0<br>2.0 2.0 2.0<br>3.0 3.0 3.0<br>4.0 4.0 4.0<br>5.0 5.0 5.0<br>LINES 3 9<br>2 0 1<br>2 2 3<br>2 4 5
<br><br>In this case after this has been read into paraview, I want to be able pass this data to my filter and identify which points are being used by which lines. I was thinking of assigning scalars to each line which might be a unique id, but am not sure how to implement that or if that is a correct approach.
<br><br>Thanks,<br>Bikash<br>