EgtGraphics 2.4j1 :
- aggiunta funzione per esportazione della griglia.
This commit is contained in:
Binary file not shown.
@@ -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
@@ -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 ;
|
||||
}
|
||||
Reference in New Issue
Block a user