Uses of Interface
org.lwjgl.util.ReadableRectangle
-
Packages that use ReadableRectangle Package Description org.lwjgl.util -
-
Uses of ReadableRectangle in org.lwjgl.util
Classes in org.lwjgl.util that implement ReadableRectangle Modifier and Type Class Description class
Rectangle
A 2D integer Rectangle class which looks remarkably like an AWT one.Methods in org.lwjgl.util with parameters of type ReadableRectangle Modifier and Type Method Description void
Rectangle. add(ReadableRectangle r)
Adds aRectangle
to thisRectangle
.boolean
Rectangle. contains(ReadableRectangle r)
Checks whether or not thisRectangle
entirely contains the specifiedRectangle
.Rectangle
Rectangle. intersection(ReadableRectangle r, Rectangle dest)
Computes the intersection of thisRectangle
with the specifiedRectangle
.boolean
Rectangle. intersects(ReadableRectangle r)
Determines whether or not thisRectangle
and the specifiedRectangle
intersect.void
Rectangle. setBounds(ReadableRectangle r)
void
WritableRectangle. setBounds(ReadableRectangle src)
Sets the bounds of the rectangleWritableRectangle
Rectangle. union(ReadableRectangle r, WritableRectangle dest)
Computes the union of thisRectangle
with the specifiedRectangle
.Constructors in org.lwjgl.util with parameters of type ReadableRectangle Constructor Description Rectangle(ReadableRectangle r)
Constructor for Rectangle.
-