RectF defines a rectangle by its four edges, as floating point values:

struct RectF {
	float Left;
	float Top;
	float Right;
	float Bottom;
}