EgtGeomKernel 1.6a3 :

- nella costruzione dei poligoni ora si fornisce anche la normale al piano
- corretta visualizzazione font OS con cambio standard/italic
- aggiunto comando per cambiare Id di oggetto.
This commit is contained in:
Dario Sassi
2015-01-19 18:19:02 +00:00
parent 2e4b67f9e9
commit 339988c139
7 changed files with 47 additions and 26 deletions
+3 -3
View File
@@ -1952,15 +1952,15 @@ GdbExecutor::CurveCompoFromPolygon( const STRVECTOR& vsParams, int nType)
// costruisco il poligono
switch ( nType) {
case POLYG_INSCR :
if ( ! pCrvCompo->PolygonCenterCorner( nNumLati, ptP1, ptP2))
if ( ! pCrvCompo->PolygonCenterCorner( nNumLati, ptP1, ptP2, Z_AX))
return false ;
break ;
case POLYG_CIRC :
if ( ! pCrvCompo->PolygonCenterMidSide( nNumLati, ptP1, ptP2))
if ( ! pCrvCompo->PolygonCenterMidSide( nNumLati, ptP1, ptP2, Z_AX))
return false ;
break ;
case POLYG_SIDE :
if ( ! pCrvCompo->PolygonSide( nNumLati, ptP1, ptP2))
if ( ! pCrvCompo->PolygonSide( nNumLati, ptP1, ptP2, Z_AX))
return false ;
break ;
default :