EgtInterface :

- cambiati alcuni nomi di funzioni come in Executor (CurveLine->Line, CurveCircle->Circle, CurveArc->Arc, ExtText->Text)
- aggiunta funzione per creazione BiArco
- aggiunte alcune funzioni di info su archi.
This commit is contained in:
Dario Sassi
2015-07-31 10:22:09 +00:00
parent e6e96f6de2
commit a8c0bd30e8
3 changed files with 71 additions and 49 deletions
+8 -8
View File
@@ -146,30 +146,30 @@ __stdcall EgtSplitCurveAtPoint( int nId, const double ptOn[3], int nRefType)
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveCircleCPN( int nId, const double ptOn[3], int nRefType)
__stdcall EgtModifyCircleCP( int nId, const double ptOn[3], int nRefType)
{
return ( ExeModifyCurveCircleCPN( nId, ptOn, nRefType) ? TRUE : FALSE) ;
return ( ExeModifyCircleCP( nId, ptOn, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveArcRadius( int nId, double dRad)
__stdcall EgtModifyArcRadius( int nId, double dRad)
{
return ( ExeModifyCurveArcRadius( nId, dRad) ? TRUE : FALSE) ;
return ( ExeModifyArcRadius( nId, dRad) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveArcC2PN( int nId, const double ptEnd[3], int nRefType)
__stdcall EgtModifyArcC2P( int nId, const double ptEnd[3], int nRefType)
{
return ( ExeModifyCurveArcC2PN( nId, ptEnd, nRefType) ? TRUE : FALSE) ;
return ( ExeModifyArcC2P( nId, ptEnd, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtModifyCurveArc3P( int nId, const double ptMid[3], int nRefType)
__stdcall EgtModifyArc3P( int nId, const double ptMid[3], int nRefType)
{
return ( ExeModifyCurveArc3P( nId, ptMid, nRefType) ? TRUE : FALSE) ;
return ( ExeModifyArc3P( nId, ptMid, nRefType) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------