EgtGeomKernel 1.6c1 :

- in esplosione testi OS si invertono i contorni, per avere gli esterni CCW.
This commit is contained in:
Dario Sassi
2015-03-11 16:05:59 +00:00
parent 6fc5e1f338
commit ea110e4ce8
2 changed files with 4 additions and 0 deletions
BIN
View File
Binary file not shown.
+4
View File
@@ -315,6 +315,10 @@ OsFont::GetOutline( const string& sText, int nInsPos, ICURVEPLIST& lstPC)
for ( iIter = lstPC.begin() ; iIter != lstPC.end() ; ++ iIter)
(*iIter)->Translate( vtIpMove) ;
// inverto i percorsi per avere gli esterni CCW
for ( iIter = lstPC.begin() ; iIter != lstPC.end() ; ++ iIter)
(*iIter)->Invert() ;
// ripristino il font originale
SelectObject( m_hDC, hPrevFont) ;