Package com.evopdf

Class RectangleFloat

java.lang.Object
com.evopdf.RectangleFloat

public class RectangleFloat extends Object
Represents a rectangle with floating point coordinates
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final RectangleFloat
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    RectangleFloat(float x, float y, float width, float height)
    Constructs a rectangle
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    Gets the rectangle height
    void
    setHeight(float height)
    Sets the rectangle height
    void
    setWidth(float width)
    Sets the rectangle width
    void
    setX(float x)
    Sets the top left corner X coordinate
    void
    setY(float y)
    Sets the top left corner Y coordinate
    float
    Gets the rectangle width
    float
    x()
    Gets the top left corner X coordinate
    float
    y()
    Gets the top left corner Y coordinate

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • RectangleFloat

      public RectangleFloat(float x, float y, float width, float height)
      Constructs a rectangle
      Parameters:
      x - top left corner X coordinate
      y - top left corner Y coordinate
      width - rectangle width
      height - rectangle height
  • Method Details

    • x

      public float x()
      Gets the top left corner X coordinate
      Returns:
      the top left corner X coordinate
    • setX

      public void setX(float x)
      Sets the top left corner X coordinate
      Parameters:
      x - the top left corner X coordinate to set
    • y

      public float y()
      Gets the top left corner Y coordinate
      Returns:
      the top left corner Y coordinate
    • setY

      public void setY(float y)
      Sets the top left corner Y coordinate
      Parameters:
      y - the top left corner Y coordinate to set
    • width

      public float width()
      Gets the rectangle width
      Returns:
      the rectangle width
    • setWidth

      public void setWidth(float width)
      Sets the rectangle width
      Parameters:
      width - the rectangle width to set
    • height

      public float height()
      Gets the rectangle height
      Returns:
      the rectangle height
    • setHeight

      public void setHeight(float height)
      Sets the rectangle height
      Parameters:
      height - the rectangle height to set