EgtMachKernel :

- aggiunta gestione modifica DB lavorazioni per impostazione tipo split archi
- introduzione invert asse (per ora solo come lettura da config. macchina).
This commit is contained in:
Dario Sassi
2016-12-05 11:17:45 +00:00
parent c10284f04b
commit 4be9b7f835
6 changed files with 29 additions and 13 deletions
+3 -1
View File
@@ -44,6 +44,7 @@ Axis::Clone( void) const
pAx->m_pGeomDB = nullptr ;
pAx->m_sName = m_sName ;
pAx->m_sToken = m_sToken ;
pAx->m_bInvert = m_bInvert ;
pAx->m_nType = m_nType ;
pAx->m_ptPos = m_ptPos ;
pAx->m_vtDir = m_vtDir ;
@@ -114,11 +115,12 @@ Axis::Axis( void)
//----------------------------------------------------------------------------
bool
Axis::Set( const string& sName, const string& sToken, int nType,
Axis::Set( const string& sName, const string& sToken, bool bInvert, int nType,
const Point3d& ptPos, const Vector3d& vtDir, const STROKE& Stroke, double dHome)
{
m_sName = sName ;
m_sToken = sToken ;
m_bInvert = bInvert ;
m_nType = nType ;
m_ptPos = ptPos ;
m_vtDir = vtDir ;