BoundingRect
Kind: class
Module/package: com.pdfdancer.common.model
SDK: com.pdfdancer.client:pdfdancer-client-java 2.0.0
Represents a rectangular area defined by getPosition and dimensions. This class encapsulates bounding box information for PDF objects, providing spatial extent data used for positioning, collision detection, and layout operations within PDF documents.
Declaration
public class com.pdfdancer.common.model.BoundingRect
Members
constructor
public com.pdfdancer.common.model.BoundingRect(double, double, double, double)
Creates a bounding rectangle with specified getPosition and dimensions.
equals
public boolean equals(java.lang.Object)
getHeight
public double getHeight()
getOrigin
public com.pdfdancer.common.model.Point getOrigin()
Returns the origin point of this bounding rectangle. The origin represents the bottom-left corner in PDF coordinate system.
getWidth
public double getWidth()
getX
public double getX()
getY
public double getY()
hashCode
public int hashCode()
setHeight
public void setHeight(double)
setWidth
public void setWidth(double)
setX
public void setX(double)
setY
public void setY(double)
toString
public java.lang.String toString()