[Kstars-devel] KDE/kdeedu/kstars/kstars/skycomponents

Jason Harris kstars at 30doradus.org
Tue Jun 27 07:33:52 CEST 2006


SVN commit 555350 by harris:

Fix bug that caused the coordinate grid lines to be composed of too many 
points.  Thanks, James...backporting to 3.5 too.

CCMAIL: kstars-devel at kde.org



 M  +1 -1      coordinategridcomponent.cpp  


--- trunk/KDE/kdeedu/kstars/kstars/skycomponents/coordinategridcomponent.cpp #555349:555350
@@ -38,7 +38,7 @@
 	emitProgressText( i18n("Loading coordinate grid" ) );
 
 	if ( Parallel ) { //line of constant Declination
-		double dra = 1./60.; //90 points around full circle
+		double dra = 1./5.; //120 points around full circle
 		for ( double ra=0.0; ra < 24.0; ra += dra ) {
 			SkyPoint *sp = new SkyPoint( ra, Coordinate );
 			sp->EquatorialToHorizontal( data->lst(), data->geo()->lat() );


More information about the Kstars-devel mailing list