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
BIN
View File
Binary file not shown.
+1
View File
@@ -144,6 +144,7 @@ class Scene : public IEGrScene
bool SetGridGeo( double dSnapStep, int nMinLineSstep, int nMajLineSstep, int nExtSstep) override ;
bool SetGridColor( Color colMinLine, Color colMajLine) override ;
void GetGridParam( double& dSnapStep, int& nExtStep) const override ;
bool GetShowGrid() override ;
// Glob Frame
bool SetGlobFrameShow( bool bShow) override ;
// Direct
+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 ;
}