[DiscordArchive] I dont know for what this structure is used, but right now both look like logical, top value is same
[DiscordArchive] I dont know for what this structure is used, but right now both look like logical, top value is same
Archived author: Intemporel • Posted: 2023-05-06T07:38:14.366000+00:00
Original source
Yeah, then maybe it’s a union
Archived author: robinsch • Posted: 2023-05-06T09:50:29.628000+00:00
Original source
class CRect {
public:
// Static functions
static CRect Intersection(const CRect& l, const CRect& r);
// Member variables
float minY = 0.0f; // t
float minX = 0.0f; // l
float maxY = 0.0f; // b
float maxX = 0.0f; // r
}