<div dir="ltr"><div style>Hi vtkusers</div><div style>I use <span style="font-size:13px;font-family:arial,sans-serif">*VTK/Examples/Cxx/PolyData/</span><span style="font-size:13px;font-family:arial,sans-serif">PointInsideObject.example to find enclosed points of a closed surface.I used triangulate mesh as my closed surface.The input data type is polydata. Is it needed following codes ( apply </span> vtkVertexGlyphFilter to make cells around points).</div>
<div><br></div><div style>regards</div><div style><br></div><div style>shirani</div><div style><br></div><div><br></div><div><br></div><div>//Points mapper, actor</div><div><br></div><div><br></div><div>  //First, apply vtkVertexGlyphFilter to make cells around points, vtk only render cells.</div>
<div>  /*vtkSmartPointer&lt;vtkVertexGlyphFilter&gt; vertexGlyphFilter =</div><div>  vtkSmartPointer&lt;vtkVertexGlyphFilter&gt;::New();</div><div>#if VTK_MAJOR_VERSION &lt;= 5</div><div>  vertexGlyphFilter-&gt;AddInput(pointsPolydata);</div>
<div>#else</div><div>  vertexGlyphFilter-&gt;AddInputData(pointsPolydata);</div><div>#endif</div><div>  vertexGlyphFilter-&gt;Update();*/</div></div>