EgtInterface 2.2f4 :
- a funzioni EgtSurfTmAdd, EgtSurfTmSubtract e EgtSurfTmIntersect aggiunto parametro bTwoColors - aggiunta funzione EgtSurfTmResetTwoColors.
This commit is contained in:
+13
-6
@@ -72,21 +72,28 @@ __stdcall EgtSurfTmRemoveFacet( int nId, int nFacet)
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtSurfTmAdd( int nId1, int nId2)
|
||||
__stdcall EgtSurfTmAdd( int nId1, int nId2, bool bTwoColors)
|
||||
{
|
||||
return ( ExeSurfTmAdd( nId1, nId2) ? TRUE : FALSE) ;
|
||||
return ( ExeSurfTmAdd( nId1, nId2, bTwoColors) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtSurfTmSubtract( int nId1, int nId2)
|
||||
__stdcall EgtSurfTmSubtract( int nId1, int nId2, bool bTwoColors)
|
||||
{
|
||||
return ( ExeSurfTmSubtract( nId1, nId2) ? TRUE : FALSE) ;
|
||||
return ( ExeSurfTmSubtract( nId1, nId2, bTwoColors) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtSurfTmIntersect( int nId1, int nId2)
|
||||
__stdcall EgtSurfTmIntersect( int nId1, int nId2, bool bTwoColors)
|
||||
{
|
||||
return ( ExeSurfTmIntersect( nId1, nId2) ? TRUE : FALSE) ;
|
||||
return ( ExeSurfTmIntersect( nId1, nId2, bTwoColors) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtSurfTmResetTwoColors( int nId)
|
||||
{
|
||||
return ( ExeSurfTmResetTwoColors( nId) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user