Tests inter-object distances
is_distance_at_least.Rd
The function calculated all pairwise distances and checks if the are larger or equal.
Examples
example_pos <-
tibble::tibble(object = 1:8, x = 1:8, y = 4 - (1:8))
is_distance_at_least(example_pos, 1)
#> [1] TRUE
is_distance_at_least(example_pos, 2)
#> [1] FALSE