From: Stefan Csomor Date: Sun, 13 Apr 2003 11:55:25 +0000 (+0000) Subject: implemented constructor for rect from point and size X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c2fa4af42353b63d0a35268fef5ded23fa00825b implemented constructor for rect from point and size git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/geometry.h b/include/wx/geometry.h index 3e18b6b025..7f1bc382a7 100644 --- a/include/wx/geometry.h +++ b/include/wx/geometry.h @@ -767,6 +767,14 @@ inline wxRect2DInt::wxRect2DInt( const wxPoint2DInt &a , const wxPoint2DInt &b) m_height = abs( a.m_y - b.m_y ); } +inline wxRect2DInt::wxRect2DInt( const wxPoint2DInt& pos, const wxSize& size) +{ + m_x = pos.m_x; + m_y = pos.m_y; + m_width = size.x; + m_height = size.y; +} + inline bool wxRect2DInt::operator == (const wxRect2DInt& rect) const { return (m_x==rect.m_x && m_y==rect.m_y &&