EgtInterface 2.1e3 :

- a EgtCreateSurfTmByScrewing aggiunto parametro per tappare gli estremi.
This commit is contained in:
Dario Sassi
2019-05-15 19:03:46 +00:00
parent 7f0ab69999
commit dba784f2a2
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -150,9 +150,9 @@ __stdcall EgtCreateSurfTmByRevolve( int nParentId, int nCrvId,
int
__stdcall EgtCreateSurfTmByScrewing( int nParentId, int nCrvId,
const double ptAx[3], const double vtAx[3],
double dAngRotDeg, double dMove, double dLinTol, int nRefType)
double dAngRotDeg, double dMove, BOOL bCapEnds, double dLinTol, int nRefType)
{
return ExeCreateSurfTmByScrewing( nParentId, nCrvId, ptAx, vtAx, dAngRotDeg, dMove, dLinTol, nRefType) ;
return ExeCreateSurfTmByScrewing( nParentId, nCrvId, ptAx, vtAx, dAngRotDeg, dMove, ( bCapEnds != FALSE), dLinTol, nRefType) ;
}
//-------------------------------------------------------------------------------