EgtExecutor 1.6w2 :

- aggiunte funzioni Exe e Lua per Zmap
- corretta fnzione disegno sfera.
This commit is contained in:
Dario Sassi
2016-11-07 08:00:40 +00:00
parent 4b95b19e9c
commit 20e88e8211
8 changed files with 193 additions and 5 deletions
+12
View File
@@ -58,6 +58,18 @@ GetPointLocal( IGeomDB* pGeomDB, const Point3d& ptP, int nRefType, const Frame3d
return ptPL ;
}
//----------------------------------------------------------------------------
Frame3d
GetFrameLocal( IGeomDB* pGeomDB, const Frame3d& frRef, int nRefType, const Frame3d& frLoc)
{
Frame3d frRefL( frRef) ;
if ( nRefType == RTY_GLOB)
frRefL.ToLoc( frLoc) ;
else if ( nRefType == RTY_GRID)
frRefL.LocToLoc( pGeomDB->GetGridFrame(), frLoc) ;
return frRefL ;
}
//----------------------------------------------------------------------------
bool
TrasformPoint( IGeomDB* pGeomDB, int nId, int nRefId, Point3d& ptP)