EgtInterface 2.4h2 :

- aggiunta interfaccia per funzione EgtCreateCircle2P
- a EgtModifyArcRadius aggiunto parametro bKeepCenter.
This commit is contained in:
DarioS
2022-08-21 16:21:53 +02:00
parent dd0cc396e0
commit e166041ad2
3 changed files with 10 additions and 2 deletions
+8
View File
@@ -83,6 +83,14 @@ __stdcall EgtCreateCircleCPEx( int nParentId, const double ptCen[3],
return ExeCreateCircleCPEx( nParentId, ptCen, ptOn, nSepO, nIdO, nRefType) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateCircle2P( int nParentId, const double ptP1[3],
const double ptP2[3], int nRefType)
{
return ExeCreateCircle2P( nParentId, ptP1, ptP2, nRefType) ;
}
//-------------------------------------------------------------------------------
int
__stdcall EgtCreateCircle3P( int nParentId, const double ptP1[3],