<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, May 21, 2014 at 11:32 AM, -Daniel- <span dir="ltr"><<a href="mailto:ich_daniel@habmalnefrage.de" target="_blank">ich_daniel@habmalnefrage.de</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi there,<br>
<br>
I use GetCellNeighbors() method for 3D objects.<br>
It works fine with STL-files, but when I use OBJ-files I get no cell<br>
neighbors.<br>
Is there a solution?<br>
<br>
My code-snippet:/<br>
for (int i = 0; i < cellPointIds.GetNumberOfIds(); i++) {<br>
  vtkIdList idList = new vtkIdList();<br>
  idList.InsertNextId(cellPointIds.GetId(i));<br>
<br>
  vtkIdList neighborCellIds = new vtkIdList();<br>
<br>
  polydata.GetCellNeighbors(cellId, idList, neighborCellIds);<br>
<br>
  for (int j = 0; j < neighborCellIds.GetNumberOfIds(); j++) {<br>
        neighbors.add(neighborCellIds.GetId(j));<br>
  }<br>
<br>
  // -> no neighbors by using OBJ<br>
  System.out.println(" neighbors: "+neighborCellIds.GetNumberOfIds());<br>
<br>
  idList.Delete();<br>
  neighborCellIds.Delete();<br>
}<br>
/<br>
<br>
Can anybody help me? Whats wrong here?<br></blockquote><div><br></div><div>Daniel,<br><br>After using an STL reader or an OBJ reader, you now have a vtkPolyData object. If the neighbors don't work with one or the other, something must have gone wrong/not as expected with either the reading or writing of your STL or OBJ files. I'd suggest opening the files in Paraview to see if all of the data you are expecting is there.<br clear="all">

<div><br>David</div></div></div></div></div>