Added geometry.cpp and made it compile,

Added empty dndcmn.cpp to avoid GNU link warnings,
  Fixed problem with event.Skip() in new tab code.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-01-24 13:13:41 +00:00
parent 6b82d89473
commit 510fc784c0
17 changed files with 115 additions and 43 deletions

View File

@@ -16,6 +16,11 @@
#pragma interface "geometry.h"
#endif
#include "wx/defs.h"
#include "wx/utils.h"
#include "wx/gdicmn.h"
#include <math.h>
#ifdef __WXMSW__
#define wxMulDivInt32( a , b , c ) ::MulDiv( a , b , c )
#elif defined( __WXMAC__ )
@@ -411,8 +416,8 @@ wxPoint2DInt operator/(const wxPoint2DInt& pt , wxInt32 n) ;
inline wxPoint2DInt::wxPoint2DInt()
{
m_x = 0.0 ;
m_y = 0.0 ;
m_x = 0 ;
m_y = 0 ;
}
inline wxPoint2DInt::wxPoint2DInt( wxInt32 x , wxInt32 y )
@@ -453,8 +458,8 @@ inline wxDouble wxPoint2DInt::GetVectorLength()
inline void wxPoint2DInt::SetVectorLength( wxDouble length )
{
wxDouble before = GetVectorLength() ;
m_x *= length / before ;
m_y *= length / before ;
m_x = (wxInt32)(m_x * length / before) ;
m_y = (wxInt32)(m_y * length / before) ;
}
inline void wxPoint2DInt::SetPolarCoordinates( wxInt32 angle , wxInt32 length ) ;