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 all rectangles that are nearest to the passed rectangle, and calls execute() on the passed IntProcedure for each one.
 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.intersects(Rectangle r, IntProcedure v)
           
 void RTree.contains(Rectangle r, IntProcedure v)