EgtInterface 1.5k1 :

- agg. gestione attributi per selezione superfici in shading
- EgtSplitCurveCompo è diventata EgtSeparateCurveCompo
- aggiunta EgtSplitCurveAtPoint
- aggiunta EgtFrameFrom3Points
This commit is contained in:
Dario Sassi
2014-11-11 10:34:42 +00:00
parent 0e648470ed
commit c28d250749
5 changed files with 64 additions and 2 deletions
+17
View File
@@ -90,6 +90,23 @@ __stdcall EgtSetMarkAttribs( Color MarkCol)
return ( pGseCtx->m_pScene->SetMark( MarkCol) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSetSelSurfAttribs( const int SelSurfCol[4])
{
return EgtSetSelSurfAttribs( Color( SelSurfCol)) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSetSelSurfAttribs( Color SelSurfCol)
{
GseContext* pGseCtx = GetCurrGseContext() ;
VERIFY_CTX_SCENE( pGseCtx, FALSE)
// imposto il colore del Mark
return ( pGseCtx->m_pScene->SetSelSurf( SelSurfCol) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtSetGeoLineAttribs( const int GlCol[4])