1
0
Fork 0

Plot rest of equatorial grid

giza
Jeff Moe 2022-07-28 12:10:47 -06:00
parent 3c07382a6f
commit c39ed20a48
1 changed files with 2 additions and 2 deletions

View File

@ -1375,7 +1375,7 @@ void skymap_plotequatorial_grid()
y=(float) ry;
if (i==0) cpgmove(x,y);
if (fabs(x)<=1.5*m.w && fabs(y)<=m.w)
cpgdraw(x,y);
cpgpt1(x,y,1);
else
cpgmove(x,y);
}
@ -1391,7 +1391,7 @@ void skymap_plotequatorial_grid()
y=(float) ry;
if (i==0) cpgmove(x,y);
if (fabs(x)<=1.5*m.w && fabs(y)<=m.w)
cpgdraw(x,y);
cpgpt1(x,y,1);
else
cpgmove(x,y);
}