<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<vtkVertexGlyphFilter> vertexGlyphFilter =</div><div> vtkSmartPointer<vtkVertexGlyphFilter>::New();</div><div>#if VTK_MAJOR_VERSION <= 5</div><div> vertexGlyphFilter->AddInput(pointsPolydata);</div>
<div>#else</div><div> vertexGlyphFilter->AddInputData(pointsPolydata);</div><div>#endif</div><div> vertexGlyphFilter->Update();*/</div></div>