EgtExecutor 2.1k6 :

- aggiunta gestione libreria di Nesting Automatico e relativa protezione
- aggiunta funzione ExeSetLineAttribs per impostare spessore linee in grafica.
This commit is contained in:
Dario Sassi
2019-12-02 07:31:22 +00:00
parent 3506992605
commit 0d337c6aad
11 changed files with 615 additions and 3 deletions
+10
View File
@@ -97,6 +97,16 @@ ExeGetBackground( Color& TopCol, Color& BottomCol)
return true ;
}
//-----------------------------------------------------------------------------
bool
ExeSetLineAttribs( int nWidth)
{
IEGrScene* pScene = GetCurrScene() ;
VERIFY_SCENE( pScene, false)
// imposto lo spessore delle linee
return pScene->SetLineWidth( nWidth) ;
}
//-----------------------------------------------------------------------------
bool
ExeSetMarkAttribs( Color MarkCol)