DeleteSelector

sealed interface DeleteSelector

Selects which points a delete targets: an explicit id list or a filter.

Inheritors

Types

Link copied to clipboard
data class ByFilter(val filter: Filter) : DeleteSelector

Delete every point matching the filter.

Link copied to clipboard
data class Ids(val ids: List<PointId>) : DeleteSelector

Delete the given point ids.