EgtInterface 2.2l1 :

- aggiunta interfaccia per funzioni EgtExplodeVolume, EgtRemoveVolZmapPart, EgtVolZmapChangeResolution.
This commit is contained in:
Dario Sassi
2020-12-07 14:32:53 +00:00
parent 4eb99ab283
commit 1e7cd51675
5 changed files with 47 additions and 1 deletions
+42
View File
@@ -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) ;
}