EgtInterface 2.2i2 :

- aggiunte interfacce per funzioni EgtCutSurfTmPlane, EgtCutSurfTmClosedCurve, EgtGroupSwap
- aggiunte interfacce per funzioni EgtInitBeamMgr, EgtBeamCalcSolid, EgtBeamGetSolid, EgtBeamShowSolid.
This commit is contained in:
Dario Sassi
2020-09-02 17:49:40 +00:00
parent 81c91cdb92
commit 8718eff972
7 changed files with 96 additions and 20 deletions
+14 -14
View File
@@ -29,7 +29,7 @@ __stdcall EgtCreateLine( int nParentId, const double ptIni[3], const double ptFi
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateLineEx( int nParentId, const double ptIni[3], int nSepI, int nIdI,
const double ptFin[3], int nSepF, int nIdF, int nRefType)
const double ptFin[3], int nSepF, int nIdF, int nRefType)
{
return ExeCreateLineEx( nParentId, ptIni, nSepI, nIdI, ptFin, nSepF, nIdF, nRefType) ;
}
@@ -37,7 +37,7 @@ __stdcall EgtCreateLineEx( int nParentId, const double ptIni[3], int nSepI, int
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateLinePDL( int nParentId, const double ptIni[3],
double dDirDeg, double dLen, int nRefType)
double dDirDeg, double dLen, int nRefType)
{
return ExeCreateLinePDL( nParentId, ptIni, dDirDeg, dLen, nRefType) ;
}
@@ -45,7 +45,7 @@ __stdcall EgtCreateLinePDL( int nParentId, const double ptIni[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateLinePVL( int nParentId, const double ptIni[3],
const double vtDir[3], double dLen, int nRefType)
const double vtDir[3], double dLen, int nRefType)
{
return ExeCreateLinePVL( nParentId, ptIni, vtDir, dLen, nRefType) ;
}
@@ -53,7 +53,7 @@ __stdcall EgtCreateLinePVL( int nParentId, const double ptIni[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateLineMinPointCurve( int nParentId,
const double ptStart[3], int nCrvId, double dNearPar, int nRefType)
const double ptStart[3], int nCrvId, double dNearPar, int nRefType)
{
return ExeCreateLineMinPointCurve( nParentId, ptStart, nCrvId, dNearPar, nRefType) ;
}
@@ -61,7 +61,7 @@ __stdcall EgtCreateLineMinPointCurve( int nParentId,
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateCircle( int nParentId, const double ptCen[3],
double dRad, int nRefType)
double dRad, int nRefType)
{
return ExeCreateCircle( nParentId, ptCen, dRad, nRefType) ;
}
@@ -70,7 +70,7 @@ __stdcall EgtCreateCircle( int nParentId, const double ptCen[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateCircleCP( int nParentId, const double ptCen[3],
const double ptOn[3], int nRefType)
const double ptOn[3], int nRefType)
{
return ExeCreateCircleCP( nParentId, ptCen, ptOn, nRefType) ;
}
@@ -78,7 +78,7 @@ __stdcall EgtCreateCircleCP( int nParentId, const double ptCen[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateCircleCPEx( int nParentId, const double ptCen[3],
const double ptOn[3], int nSepO, int nIdO, int nRefType)
const double ptOn[3], int nSepO, int nIdO, int nRefType)
{
return ExeCreateCircleCPEx( nParentId, ptCen, ptOn, nSepO, nIdO, nRefType) ;
}
@@ -86,7 +86,7 @@ __stdcall EgtCreateCircleCPEx( int nParentId, const double ptCen[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateCircle3P( int nParentId, const double ptP1[3],
const double ptP2[3], const double ptP3[3], int nRefType)
const double ptP2[3], const double ptP3[3], int nRefType)
{
return ExeCreateCircle3P( nParentId, ptP1, ptP2, ptP3, nRefType) ;
}
@@ -94,7 +94,7 @@ __stdcall EgtCreateCircle3P( int nParentId, const double ptP1[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateArc( int nParentId, const double ptCen[3], double dRad,
double dAngIniDeg, double dAngCenDeg, double dDeltaN, int nRefType)
double dAngIniDeg, double dAngCenDeg, double dDeltaN, int nRefType)
{
return ExeCreateArc( nParentId, ptCen, dRad, dAngIniDeg, dAngCenDeg, dDeltaN, nRefType) ;
}
@@ -102,7 +102,7 @@ __stdcall EgtCreateArc( int nParentId, const double ptCen[3], double dRad,
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateArcC2P( int nParentId, const double ptCen[3], const double ptStart[3],
const double ptNearEnd[3], int nRefType)
const double ptNearEnd[3], int nRefType)
{
return ExeCreateArcC2P( nParentId, ptCen, ptStart, ptNearEnd, nRefType) ;
}
@@ -110,8 +110,8 @@ __stdcall EgtCreateArcC2P( int nParentId, const double ptCen[3], const double pt
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateArcC2PEx( int nParentId, const double ptCen[3],
const double ptStart[3], int nSepS, int nIdS,
const double ptNearEnd[3], int nRefType)
const double ptStart[3], int nSepS, int nIdS,
const double ptNearEnd[3], int nRefType)
{
return ExeCreateArcC2PEx( nParentId, ptCen, ptStart, nSepS, nIdS, ptNearEnd, nRefType) ;
}
@@ -119,7 +119,7 @@ __stdcall EgtCreateArcC2PEx( int nParentId, const double ptCen[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateArc3P( int nParentId, const double ptP1[3],
const double ptP2[3], const double ptP3[3], int nRefType)
const double ptP2[3], const double ptP3[3], int nRefType)
{
return ExeCreateArc3P( nParentId, ptP1, ptP2, ptP3, nRefType) ;
}
@@ -127,7 +127,7 @@ __stdcall EgtCreateArc3P( int nParentId, const double ptP1[3],
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateArc2PD( int nParentId, const double ptStart[3], const double ptEnd[3],
double dDirSDeg, int nRefType)
double dDirSDeg, int nRefType)
{
return ExeCreateArc2PD( nParentId, ptStart, ptEnd, dDirSDeg, nRefType) ;
}