EgtGraphics 1.6b6 :

- migliorata gestione punti notevoli di curve con estrusione
- prima versione di punto End su SurfTM.
This commit is contained in:
Dario Sassi
2015-02-24 22:50:22 +00:00
parent 6526f7ab9f
commit 21d509f3da
5 changed files with 571 additions and 439 deletions
+11
View File
@@ -150,6 +150,17 @@ Scene::GetSelectedObjWinZ( int nSel)
return 0.5 * ( double( m_nSelBuff[nSel].nZmin) + double( m_nSelBuff[nSel].nZmax)) / UINT_MAX ;
}
//----------------------------------------------------------------------------
double
Scene::GetSelectedObjMinWinZ( int nSel)
{
if ( nSel < 0)
nSel = m_nSelCurr ;
if ( nSel < 0 || nSel >= m_nSelNbr)
return 0.5 ;
return ( double( m_nSelBuff[nSel].nZmin)) / UINT_MAX ;
}
/*------------------------------------------------------------------------------------------*/
bool
Scene::UnselectableAdd( int nId)