Resolve merge conflict

This commit is contained in:
Prokhorov Kirill
2025-12-23 17:58:22 +03:00
parent b6f024b73f
commit a2fc927b39

View File

@ -212,6 +212,8 @@ public:
void Offset(const PointF_T<T>& point) { Offset(point.X, point.Y); }
void Offset(T dx, T dy) { X += dx; Y += dy; }
inline bool IsPositive() { return Width > 0 && Height > 0; }
RectF_T& operator=(const RectF_T& other)
{
if (this == &other)