Two methods used to sample points on a model
Here are two methods used to sample points on a model (surface mesh or 3D polydata). Filter connected points Use BFS (Breadth First Search) algorithm to get connected points in polyData. Iterate through all the points in jumps to achieve the purpose of sampling. Sampling points by spatial distance Calculate Read more…