EgtExecutor :

- a ExeInitMachMgr aggiunto parametro sToolMakersDir
- aggiunta funzione ExeTdbCurrToolDraw.
This commit is contained in:
Dario Sassi
2019-05-17 18:18:20 +00:00
parent 86ceaec8d9
commit 3cbb3fb604
3 changed files with 24 additions and 13 deletions
+6 -6
View File
@@ -25,7 +25,7 @@ using namespace std ;
//-------------------------------------------------------------------------------
bool
ExeTransform( INTVECTOR& vIds, const Frame3d& frRef, int nRefType)
ExeTransform( const INTVECTOR& vIds, const Frame3d& frRef, int nRefType)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -84,7 +84,7 @@ ExeTransform( INTVECTOR& vIds, const Frame3d& frRef, int nRefType)
//-------------------------------------------------------------------------------
bool
ExeMove( INTVECTOR& vIds, const Vector3d& vtMove, int nRefType)
ExeMove( const INTVECTOR& vIds, const Vector3d& vtMove, int nRefType)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -138,7 +138,7 @@ ExeMove( INTVECTOR& vIds, const Vector3d& vtMove, int nRefType)
//-------------------------------------------------------------------------------
bool
ExeRotate( INTVECTOR& vIds, const Point3d& ptAx, const Vector3d& vtAx, double dAngRotDeg, int nRefType)
ExeRotate( const INTVECTOR& vIds, const Point3d& ptAx, const Vector3d& vtAx, double dAngRotDeg, int nRefType)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -197,7 +197,7 @@ ExeRotate( INTVECTOR& vIds, const Point3d& ptAx, const Vector3d& vtAx, double dA
//-------------------------------------------------------------------------------
bool
ExeScale( INTVECTOR& vIds, const Frame3d& frRef,
ExeScale( const INTVECTOR& vIds, const Frame3d& frRef,
double dCoeffX, double dCoeffY, double dCoeffZ, int nRefType)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
@@ -258,7 +258,7 @@ ExeScale( INTVECTOR& vIds, const Frame3d& frRef,
//-------------------------------------------------------------------------------
bool
ExeMirror( INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN, int nRefType)
ExeMirror( const INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN, int nRefType)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, FALSE)
@@ -316,7 +316,7 @@ ExeMirror( INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN, int nRefTyp
//-------------------------------------------------------------------------------
bool
ExeShear( INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN,
ExeShear( const INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN,
const Vector3d& vtDir, double dCoeff, int nRefType)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;