#include "Types.h" Point2f Point2fWithValues(float x, float y) { Point2f point; point.x = x; point.y = y; return point; } Rect4f Rect4fWithValues(float left, float bottom, float right, float top) { Rect4f rect; rect.left = left; rect.bottom = bottom; rect.right = right; rect.top = top; return rect; }