Uses of Interface
com.infomatiq.jsi.IntProcedure

Packages that use IntProcedure
com.infomatiq.jsi   
com.infomatiq.jsi.rtree   
 

Uses of IntProcedure in com.infomatiq.jsi
 

Methods in com.infomatiq.jsi with parameters of type IntProcedure
 void SpatialIndex.nearest(Point p, IntProcedure v, float distance)
          Finds the nearest rectangle to the passed rectangle and calls execute().
 void SpatialIndex.nearestN(Point p, IntProcedure v, int n, float distance)
          Finds the N nearest rectangles to the passed rectangle, and calls execute on each one, in order of increasing distance.
 void SpatialIndex.intersects(Rectangle r, IntProcedure ip)
          Finds all rectangles that intersect the passed rectangle.
 void SpatialIndex.contains(Rectangle r, IntProcedure ip)
          Finds all rectangles contained by the passed rectangle.
 

Uses of IntProcedure in com.infomatiq.jsi.rtree
 

Methods in com.infomatiq.jsi.rtree with parameters of type IntProcedure
 void RTree.nearest(Point p, IntProcedure v, float furthestDistance)
           
 void RTree.nearestN(Point p, IntProcedure v, int count, float furthestDistance)
           
 void RTree.intersects(Rectangle r, IntProcedure v)
           
 void RTree.contains(Rectangle r, IntProcedure v)