Skip to content

Remove Close Points

Remove Close Points
Output
Points
null
Min Distance
Seed
0

Category Shape
Is Pair Node: No


Removes points that are too close to each other based on a specified minimum distance.


Type: Points Data
Default: null

The points to process. This is the input data containing the points that will be filtered based on their proximity to each other.

Type: Double
Default: 0

The minimum distance between points. This value determines how close points can be to each other before one of them is removed. If two points are closer than this distance, one will be discarded.

Type: Integer
Default: 0

The seed for random selection. This is used to ensure that the process of removing close points is deterministic, allowing for reproducible results. Points are selected randomly during the filtering process, and the seed controls this randomness.


Type: Points Data
Default: null

Filtered points data.