z

Class PxlRectF

Represents a floating-point rectangle.

public class PxlRectF

Constructor

PxlRectF(float, float, float, float)

Initialises a rectangle with explicit edges.

public PxlRectF(float l, float t, float r, float b)

Field

Bottom

Bottom edge coordinate.

public float Bottom

Left

Left edge coordinate.

public float Left

Right edge coordinate.

public float Right

Top

Top edge coordinate.

public float Top

Property

Height

Gets the rectangle height.

public float Height { get; }

Width

Gets the rectangle width.

public float Width { get; }
Top