EgtInterface 1.9b2 :

- aggiunte funzioni EgtZoomRadius e EgtZoomObject.
This commit is contained in:
Dario Sassi
2018-02-10 10:26:10 +00:00
parent c997f55c1c
commit 03a1c1e8de
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -318,6 +318,20 @@ __stdcall EgtZoom( int nZoom, BOOL bRedraw)
return ( ExeZoom( nZoom, ( bRedraw != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtZoomRadius( double dRadius, BOOL bRedraw)
{
return ( ExeZoomRadius( dRadius, ( bRedraw != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtZoomObject( int nId, BOOL bRedraw)
{
return ( ExeZoomObject( nId, ( bRedraw != FALSE)) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtZoomOnPoint( int nWinX, int nWinY, double dCoeff, BOOL bRedraw)