Uses of Class
org.djutils.draw.bounds.Bounds2d
-
Packages that use Bounds2d Package Description org.djutils.draw The draw package contains the generic classes for device-independent drawing.org.djutils.draw.bounds Methods for Bounds of an object to quickly determine whether an object needs to be drawn or not.org.djutils.draw.line The d1 package provides an interface and different implementations for Lines.org.djutils.draw.point The d0 package provides a set of interfaces and implementations of Points. -
-
Uses of Bounds2d in org.djutils.draw
Methods in org.djutils.draw that return Bounds2d Modifier and Type Method Description Bounds2d
Drawable2d. getBounds()
Retrieve the bounding rectangle of the object.Bounds2d
Transform2d. transform(Bounds2d boundingRectangle)
Apply the stored transform on the provided Bounds2d and return a new Bounds2d with the bounds of the transformed coordinates.Methods in org.djutils.draw with parameters of type Bounds2d Modifier and Type Method Description Bounds2d
Transform2d. transform(Bounds2d boundingRectangle)
Apply the stored transform on the provided Bounds2d and return a new Bounds2d with the bounds of the transformed coordinates. -
Uses of Bounds2d in org.djutils.draw.bounds
Methods in org.djutils.draw.bounds that return Bounds2d Modifier and Type Method Description Bounds2d
Bounds2d. getBounds()
Retrieve the bounding rectangle of the object.Bounds2d
Bounds2d. intersection(Bounds2d otherBounds2d)
Return the intersecting Bounds of this Bounds and another Bounds.Bounds2d
Bounds3d. project()
Project the object onto the z=0 plane.Methods in org.djutils.draw.bounds with parameters of type Bounds2d Modifier and Type Method Description boolean
Bounds2d. covers(Bounds2d otherBounds2d)
Check if this Bounds contains another Bounds.boolean
Bounds2d. disjoint(Bounds2d otherBounds2d)
Return whether this Bounds is disjoint from another Bounds.Bounds2d
Bounds2d. intersection(Bounds2d otherBounds2d)
Return the intersecting Bounds of this Bounds and another Bounds.boolean
Bounds2d. intersects(Bounds2d otherBounds2d)
Return whether this Bounds intersects another Bounds. -
Uses of Bounds2d in org.djutils.draw.line
Methods in org.djutils.draw.line that return Bounds2d Modifier and Type Method Description Bounds2d
LineSegment2d. getBounds()
Retrieve the bounding rectangle of the object.Bounds2d
PolyLine2d. getBounds()
Retrieve the bounding rectangle of the object.Bounds2d
Ray2d. getBounds()
Retrieve the bounding rectangle of the object. -
Uses of Bounds2d in org.djutils.draw.point
Methods in org.djutils.draw.point that return Bounds2d Modifier and Type Method Description Bounds2d
Point2d. getBounds()
Retrieve the bounding rectangle of the object.
-