|  | CompressedAabbTreeFilter 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
Syntaxpublic IPairFilter<int> Filter { get; set; }Public Property Filter As IPairFilter(Of Integer)
	Get
	Set
public:
virtual property IPairFilter<int>^ Filter {
	IPairFilter<int>^ get () sealed;
	void set (IPairFilter<int>^ value) sealed;
}abstract Filter : IPairFilter<int> with get, set
override Filter : IPairFilter<int> with get, set
Property Value
Type: 
IPairFilterInt32The filter that is used to filter item overlap pairs.
Implements
ISpatialPartitionTFilter Remarks
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
See Also