Rect To Min Max
Rects
The Rect To Min Max node takes in a rect value and returns 2 specific float2 values, showing the minimum size of the rect, usually just at the X
and Y
position, and also returning the max size of this rect, which is usually X
+ Width
and Y
+ Height
. In contrast to the Rect To Position Size node where it takes the literal position and size to get a rect's bounding data.
Inputs
Rect (Rect)
The rect value.
Outputs
Min (float2)
Returns the minimum size of this rect (usually returning the X
and Y
position of this rect).
Max (float2)
Returns the maximum size of this rect (usually returning the X
+ Width
and Y
+ Height
of this rect).