- aggiunta interfaccia per EgtCopyCompoSubCurve e EgtCopyParamRange.

- cambio versione.
This commit is contained in:
Daniele Bariletti
2025-03-27 10:20:45 +01:00
parent e9615222be
commit 303489452a
2 changed files with 14 additions and 0 deletions
+14
View File
@@ -270,3 +270,17 @@ __stdcall EgtCurveCompoCenter( int nId, int nSimpCrv, int nRefId, double ptCen[3
VEC_FROM_3D( ptCen, ptTmp)
return TRUE ;
}
//----------------------------------------------------------------------------
int
__stdcall EgtCopyCompoSubCurve( int nId, int nSubCrvToCopy, int nParentId)
{
return ExeCopyCompoSubCurve( nId, nSubCrvToCopy, nParentId) ;
}
//----------------------------------------------------------------------------
int
__stdcall EgtCopyParamRange( int nId, double dUStart, double dUEnd, int nParentId)
{
return ExeCopyParamRange( nId, dUStart, dUEnd, nParentId) ;
}