This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/types/rect-f.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. RectF

Represents a rectangle with float coordinates.

from nutrient_sdk.rectf import RectF

Construction

RectF(left: float, top: float, right: float, bottom: float)

Fields

FieldTypeDescription
leftfloatThe left coordinate of the rectangle.
topfloatThe top coordinate of the rectangle.
rightfloatThe right coordinate of the rectangle.
bottomfloatThe bottom coordinate of the rectangle.

Usage Example

from nutrient_sdk.rectf import RectF
value = RectF(left=36.0, top=72.0, right=288.0, bottom=144.0)