EgtGraphics 1.6b2 :
- spostato disegno griglia per modalità hiddenline.
This commit is contained in:
+3
-3
@@ -15,8 +15,8 @@
|
||||
#include "stdafx.h"
|
||||
#include "Scene.h"
|
||||
#include "EGrUtils.h"
|
||||
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
using namespace std ;
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
@@ -33,7 +33,7 @@ bool
|
||||
Scene::SetGridGeo( double dSnapStep, int nMinLineSstep, int nMajLineSstep, int nExtSstep)
|
||||
{
|
||||
const double MIN_SNAP_STEP = 0.1 ;
|
||||
m_dSnapStep = max( fabs( dSnapStep), MIN_SNAP_STEP) ;
|
||||
m_dSnapStep = std::max( fabs( dSnapStep), MIN_SNAP_STEP) ;
|
||||
m_nMinLineSstep = abs( nMinLineSstep) ;
|
||||
m_nMajLineSstep = abs( nMajLineSstep) ;
|
||||
m_nExtSstep = abs( nExtSstep) ;
|
||||
|
||||
Reference in New Issue
Block a user