PdfElixide.Geometry.Rect (pdf_elixide v0.5.0)

Copy Markdown View Source

An axis-aligned rectangle in PDF user-space coordinates.

The origin {x, y} is the top-left corner and width/height are always non-negative.

Summary

Types

t()

@type t() :: %PdfElixide.Geometry.Rect{
  height: float(),
  width: float(),
  x: float(),
  y: float()
}