| BasePartitionTFilter Property |
Gets or sets the filter that is used to filter overlaps of two items.
Namespace: DigitalRune.Geometry.PartitioningAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public IPairFilter<T> Filter { get; set; }
Public Property Filter As IPairFilter(Of T)
Get
Set
public:
virtual property IPairFilter<T>^ Filter {
IPairFilter<T>^ get () sealed;
void set (IPairFilter<T>^ value) sealed;
}
abstract Filter : IPairFilter<'T> with get, set
override Filter : IPairFilter<'T> with get, set
Property Value
Type:
IPairFilterTThe filter that is used to filter item overlap pairs.
Implements
ISpatialPartitionTFilterRemarks
The
GetOverlaps methods check whether the items overlap. Then - when a
Filter is set - the
GetOverlaps methods apply the filter to
all pairs of overlapping items. A
Filter can be set to check the item pairs
for additional criteria and reject item pairs that do not meet these criteria.
See Also