Point cloud
XYZdist
Distance-Based Layered Point Selection
This operation involves selecting points within a specific range of distances from a reference geometry or surface. By calculating the distance between points and the reference, you can group points into layers based on their proximity. This technique is useful for creating layered effects or isolating specific regions of a point cloud for further manipulation.
Pcfind
Remove points by distance and number of neighbors
Next example shows how to remove points by distance and number of neighbors. Useful for cleaning pointclouds after different simulations when single spare points are not needed.
Vex snippet:
Remove redudant single points by pscale
Remove redudant single points which has large pscale between points with smaller pscale around them.
Remove point intersection by pscale:
Detect point intersection by pscale and remove points
Remove points which have the same position
Brutforce method to remove points (Slowest with large pointcloud)
PcOpen method to remove points
PcFind method to remove points (fastest one)