EgtGraphics 2.4j1 :

- aggiunta funzione per esportazione della griglia.
This commit is contained in:
Riccardo Elitropi
2022-10-20 16:15:29 +02:00
parent 9989ea95d7
commit 76d7496e2e
3 changed files with 9 additions and 1 deletions
+8 -1
View File
@@ -200,8 +200,15 @@ Scene::DrawGrid( void)
//----------------------------------------------------------------------------
void
Scene::GetGridParam(double& dSnapStep, int& nExtStep) const
Scene::GetGridParam( double& dSnapStep, int& nExtStep) const
{
dSnapStep = m_dSnapStep ;
nExtStep = m_nExtSstep ;
}
//----------------------------------------------------------------------------
bool
Scene::GetShowGrid()
{
return m_bShowGrid ;
}