EgtGeomKernel :

- a ExtText aggiunta GetAuxSurf (solo per font di sistema)
- molto migliorata gestione anelli e spikes nella creazione di regioni.
This commit is contained in:
Dario Sassi
2020-06-02 10:12:47 +00:00
parent e8796dac88
commit e6d64e2c60
9 changed files with 239 additions and 27 deletions
+10
View File
@@ -131,6 +131,16 @@ FontManager::GetOutline( const string& sText, int nInsPos, ICURVEPLIST& lstPC) c
return m_OsFont.GetOutline( sText, nInsPos, lstPC) ;
}
//----------------------------------------------------------------------------
bool
FontManager::GetRegion( const string& sText, int nInsPos, ISURFFRPLIST& lstSFR) const
{
if ( m_bCurrNfeFont)
return false ;
else
return m_OsFont.GetRegion( sText, nInsPos, lstSFR) ;
}
//----------------------------------------------------------------------------
bool
FontManager::ApproxWithLines( const string& sText, int nInsPos, double dLinTol, double dAngTolDeg, POLYLINELIST& lstPL) const