Hi!<div><br></div><div><div>I&#39;m using vtkPolyDataNormals to obtain point normals on my mesh. The idea is to use these normals to compute curvatures using polynomial fitting.</div></div><div><br></div><div>The problem is that vtkPolyDataNormals is not giving me the correct normal orientations for all vertices. Here&#39;s an example image:</div>
<div><br></div><div><a href="http://tinypic.com/r/2dv7l36/7">http://tinypic.com/r/2dv7l36/7</a></div><div><br></div><div>as you can see, for now I&#39;m using a synthetic, perfectly regular noiseless mesh!</div><div><br></div>
<div>Here&#39;s my code for computing normals:</div><div><div><br></div><div>vtkSmartPointer&lt;vtkPolyDataNormals&gt; normals = vtkSmartPointer&lt;vtkPolyDataNormals&gt;::New();</div><div>normals-&gt;SetInput( meshdata-&gt;polydata );</div>
<div>normals-&gt;SplittingOff();</div><div>normals-&gt;ComputePointNormalsOn();</div><div>normals-&gt;ComputeCellNormalsOff();</div><div>normals-&gt;Update();</div></div><div><br></div><div>Thanks,</div><div>Miguel</div>