EgtGeomKernel : migliorata scalatura non uniforme, con conservazione del piano XY dei riferimenti di gruppo.

This commit is contained in:
Dario Sassi
2014-01-20 10:57:14 +00:00
parent 4ebb43bf1e
commit b2c6866eff
7 changed files with 115 additions and 15 deletions
+20
View File
@@ -184,3 +184,23 @@ GdbObj::Scale( const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoe
else
return false ;
}
//----------------------------------------------------------------------------
bool
GdbObj::ToGlob( const Frame3d& frRef)
{
if ( m_pGeoObj != nullptr)
return m_pGeoObj->ToGlob( frRef) ;
else
return false ;
}
//----------------------------------------------------------------------------
bool
GdbObj::ToLoc( const Frame3d& frRef)
{
if ( m_pGeoObj != nullptr)
return m_pGeoObj->ToLoc( frRef) ;
else
return false ;
}