Interface IRectangle2D
-
public interface IRectangle2DProject: User: rufenec Date: 11/24/2014 Time: 3:17 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(double x, double y)doublegetHeight()doublegetMaxX()doublegetMaxY()doublegetMinX()doublegetMinY()doublegetWidth()booleanintersects(IRectangle2D rc)
-
-
-
Method Detail
-
contains
boolean contains(double x, double y)
-
intersects
boolean intersects(IRectangle2D rc)
-
getMinX
double getMinX()
-
getMinY
double getMinY()
-
getWidth
double getWidth()
-
getHeight
double getHeight()
-
getMaxX
double getMaxX()
-
getMaxY
double getMaxY()
-
-