@@ -148,7 +148,7 @@ static const double STEP_SIZES_HMS[] = {0.05, 0.2, 1.5, 7.5, 15., 15.*5., 15.*10
148148// ! Return the angular grid step in degree which best fits the given scale
149149static double getClosestResolutionDMS (double pixelPerRad, double spacingMultiplier)
150150{
151- // Apply spacing multiplier: higher values = denser grid
151+ // Apply spacing multiplier: higher values = denser grid
152152 double minResolution = 80.0 / spacingMultiplier;
153153 double minSizeArcsec = minResolution/pixelPerRad*M_180_PI*3600 ;
154154 for (unsigned int i=0 ;i<12 ;++i)
@@ -162,7 +162,7 @@ static double getClosestResolutionDMS(double pixelPerRad, double spacingMultipli
162162// ! Return the angular grid step in degree which best fits the given scale
163163static double getClosestResolutionHMS (double pixelPerRad, double spacingMultiplier)
164164{
165- // Apply spacing multiplier: higher values = denser grid
165+ // Apply spacing multiplier: higher values = denser grid
166166 double minResolution = 80.0 / spacingMultiplier;
167167 double minSizeArcsec = minResolution/pixelPerRad*M_180_PI*3600 ;
168168 for (unsigned int i=0 ;i<11 ;++i)
@@ -1992,7 +1992,7 @@ void GridLinesMgr::init()
19921992 setPartThickness (conf->value (" viewing/part_thickness" , 1 .f ).toFloat ());
19931993 // Set the point size
19941994 setPointSize (conf->value (" viewing/point_size" , 5 .f ).toFloat ());
1995- // Set gridline spacing
1995+ // Set gridline spacing
19961996 setGridSpacingMultiplier (conf->value (" viewing/grid_spacing_multiplier" , 1.0 ).toDouble ());
19971997
19981998 // Load colors from config file
@@ -4187,7 +4187,7 @@ void GridLinesMgr::setFontSizeFromApp(int size)
41874187}
41884188double GridLinesMgr::getGridSpacingMultiplier () const
41894189{
4190- return gridSpacingMultiplier;
4190+ return gridSpacingMultiplier;
41914191}
41924192
41934193void GridLinesMgr::setGridSpacingMultiplier (double multiplier)
0 commit comments