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:
@@ -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) ;
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user