EgtInterface 2.2l1 :
- aggiunta interfaccia per funzioni EgtExplodeVolume, EgtRemoveVolZmapPart, EgtVolZmapChangeResolution.
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// EgalTech 2020-2020
|
||||
//----------------------------------------------------------------------------
|
||||
// File : API_GdbModifyVolume.cpp Data : 07.12.20 Versione : 2.2l1
|
||||
// Contenuto : Funzioni di modifica dei solidi per API.
|
||||
//
|
||||
//
|
||||
//
|
||||
// Modifiche : 07.12.20 DS Creazione modulo.
|
||||
//
|
||||
//
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//--------------------------- Include ----------------------------------------
|
||||
#include "stdafx.h"
|
||||
#include "API.h"
|
||||
#include "/EgtDev/Include/EInAPI.h"
|
||||
#include "/EgtDev/Include/EXeExecutor.h"
|
||||
|
||||
using namespace std ;
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
int
|
||||
__stdcall EgtExplodeVolume( int nId, int* pnCount)
|
||||
{
|
||||
return ExeExplodeVolume( nId, pnCount) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtRemoveVolZmapPart( int nId, int nPart)
|
||||
{
|
||||
return ( ExeRemoveVolZmapPart( nId, nPart) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
BOOL
|
||||
__stdcall EgtVolZmapChangeResolution( int nId, int nNewRes)
|
||||
{
|
||||
return ( ExeVolZmapChangeResolution( nId, nNewRes) ? TRUE : FALSE) ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user