]> git.saurik.com Git - wxWidgets.git/commitdiff
implemented constructor for rect from point and size
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 13 Apr 2003 11:55:25 +0000 (11:55 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 13 Apr 2003 11:55:25 +0000 (11:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/geometry.h

index 3e18b6b02557993c33dc090e7b9fe4455030a609..7f1bc382a7de5c3184a57df5148b3951fc6f6c09 100644 (file)
@@ -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 &&