Uses of Class
com.infomatiq.jsi.Rectangle

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

Uses of Rectangle in com.infomatiq.jsi
 

Methods in com.infomatiq.jsi that return Rectangle
 Rectangle Rectangle.copy()
          Make a copy of this rectangle
 Rectangle Rectangle.union(Rectangle r)
          Find the the union of this rectangle and the passed rectangle.
 

Methods in com.infomatiq.jsi with parameters of type Rectangle
 void SpatialIndex.add(Rectangle r, int id)
          Adds a new rectangle to the spatial index
 boolean SpatialIndex.delete(Rectangle r, int id)
          Deletes a rectangle from the spatial index
 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.
 boolean Rectangle.edgeOverlaps(Rectangle r)
          Determine whether an edge of this rectangle overlies the equivalent edge of the passed rectangle
 boolean Rectangle.intersects(Rectangle r)
          Determine whether this rectangle intersects the passed rectangle
 boolean Rectangle.contains(Rectangle r)
          Determine whether this rectangle contains the passed rectangle
 boolean Rectangle.containedBy(Rectangle r)
          Determine whether this rectangle is contained by the passed rectangle
 float Rectangle.distance(Rectangle r)
          Return the distance between this rectangle and the passed rectangle.
 float Rectangle.furthestDistance(Rectangle r)
          Return the furthst possible distance between this rectangle and the passed rectangle.
 float Rectangle.enlargement(Rectangle r)
          Calculate the area by which this rectangle would be enlarged if added to the passed rectangle.
 void Rectangle.add(Rectangle r)
          Computes the union of this rectangle and the passed rectangle, storing the result in this rectangle.
 Rectangle Rectangle.union(Rectangle r)
          Find the the union of this rectangle and the passed rectangle.
 

Uses of Rectangle in com.infomatiq.jsi.rtree
 

Methods in com.infomatiq.jsi.rtree with parameters of type Rectangle
 void RTree.add(Rectangle r, int id)
           
 boolean RTree.delete(Rectangle r, int id)
           
 void RTree.intersects(Rectangle r, IntProcedure v)
           
 void RTree.contains(Rectangle r, IntProcedure v)