Provides a mechanism for listener notification when the local view cell enters/exits a set of bounds for a cell.
The bounds must be ordered from largest to smallest, thus localBounds[i] must enclose localBounds[i+1]. The listeners will be notified as the View enters each subsequent bounding volume and then notified the view exits each volume.
For example given a set of Bounding Spheres with the same center and radii of 10, 5, 2. As the ViewCell moves from outside to the center of the spheres the listeners will be called with
enter, 10
enter, 5
enter, 2
then as the user moves away from the center the following sequence of exits will be called
exit, 2
exit, 5
exit, 10
|
|
|
|