[Kstars-devel] KDE/kdeedu/kstars/kstars/skycomponents
Jason Harris
kstars at 30doradus.org
Sun Feb 18 21:58:40 CET 2007
SVN commit 634938 by harris:
Make sure the meridonal lines of the coordinate grid extend
all the way to the south celestial pole.
CCMAIL: kstars-devel at kde.org
M +1 -1 coordinategridcomponent.cpp
--- trunk/KDE/kdeedu/kstars/kstars/skycomponents/coordinategridcomponent.cpp #634937:634938
@@ -57,7 +57,7 @@
if ( OppositeRA > 24.0 ) OppositeRA -= 24.0;
SkyPoint o1( RA, -90.0 );
- for ( double dec=-90. + 4.0; dec < 270.; dec += 4.0 ) {
+ for ( double dec=-90. + 4.0; dec <= 270.; dec += 4.0 ) {
double Dec = dec;
if ( dec > 90. ) {
Dec = 180. - dec;
More information about the Kstars-devel
mailing list