EgtMachKernel :

- i versori di assi e testa vengono impostati su modo HIDDEN.
This commit is contained in:
Dario Sassi
2019-02-14 10:01:08 +00:00
parent 228acfe05c
commit 6b50246da5
+2 -2
View File
@@ -346,7 +346,7 @@ Machine::AdjustAxis( int nLay, const string& sPart, const string& sName,
if ( ! m_pGeomDB->SetName( nId, sName))
return false ;
// lo nascondo
if ( ! m_pGeomDB->SetStatus( nId, GDB_ST_OFF))
if ( ! m_pGeomDB->SetMode( nId, GDB_MD_HIDDEN))
return false ;
// riferimento globale del gruppo asse
@@ -745,7 +745,7 @@ Machine::AdjustExitFrames( int nLay, const MUEXITVECTOR& vMuExit, const Vector3d
if ( ! IsNull( pGVec) && pGVec->Set( vtAuxL, frFrame.Orig())) {
int nAvId = m_pGeomDB->AddGeoObj( GDB_ID_NULL, nLay, Release( pGVec)) ;
m_pGeomDB->SetName( nAvId, MCH_AUX_VECT) ;
m_pGeomDB->SetStatus( nAvId, GDB_ST_OFF) ;
m_pGeomDB->SetMode( nAvId, GDB_MD_HIDDEN) ;
}
}
}