EgtInterface 2.4e4 :

- aggiunta interfaccia di funzione EgtCurveParamAtLength.
This commit is contained in:
DarioS
2022-05-26 14:44:40 +02:00
parent 8d6699c26f
commit 6760747ac7
2 changed files with 7 additions and 0 deletions
+7
View File
@@ -33,6 +33,13 @@ __stdcall EgtCurveLength( int nId, double* pdLen)
return ( ExeCurveLength( nId, pdLen) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtCurveParamAtLength( int nId, double dLen, double* pdU)
{
return ( ExeCurveParamAtLength( nId, dLen, pdU) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
BOOL
__stdcall EgtCurveLengthAtPoint( int nId, const double ptOn[3], double dExtend, double* pdLen)