| ISpatialPartitionTFilter 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 IPairFilter<T> Filter { get; set; }
Property Filter As IPairFilter(Of T)
Get
Set
property IPairFilter<T>^ Filter {
IPairFilter<T>^ get ();
void set (IPairFilter<T>^ value);
}
abstract Filter : IPairFilter<'T> with get, set
Property Value
Type:
IPairFilterTThe filter that is used to filter item overlap pairs.
Remarks
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