lt.monarch.math.geom
Class Bounds

java.lang.Object
  extended by lt.monarch.math.geom.Bounds

public class Bounds
extends java.lang.Object

Class holding rectangular bounds object (minimum and maximum values)


Constructor Summary
Constructor and Description
Bounds(double minX, double maxX, double minY, double maxY)
           
 
Method Summary
Modifier and Type Method and Description
 double getMaxX()
           
 double getMaxY()
           
 double getMinX()
           
 double getMinY()
           
 void setMaxX(double maxX)
           
 void setMaxY(double maxY)
           
 void setMinX(double minX)
           
 void setMinY(double minY)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Bounds

public Bounds(double minX,
              double maxX,
              double minY,
              double maxY)
Method Detail

getMinX

public double getMinX()

setMinX

public void setMinX(double minX)

getMaxX

public double getMaxX()

setMaxX

public void setMaxX(double maxX)

getMinY

public double getMinY()

setMinY

public void setMinY(double minY)

getMaxY

public double getMaxY()

setMaxY

public void setMaxY(double maxY)