From 6b50246da58c1ec53e0e7afbdc7588111f44fa7a Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 14 Feb 2019 10:01:08 +0000 Subject: [PATCH] EgtMachKernel : - i versori di assi e testa vengono impostati su modo HIDDEN. --- Machine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Machine.cpp b/Machine.cpp index 76325b5..ec8357f 100644 --- a/Machine.cpp +++ b/Machine.cpp @@ -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) ; } } }