blob: 8cedbfc295f65b594c914c939272e5e582557823 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include "../lib/display.h"
# AP_CSHOW -- Procedure to display the current centering parameters.
procedure ap_cshow (ap)
pointer ap # pointer to the apphot strucuture
bool itob()
int apstati()
begin
call ap_nshow (ap)
call printf ("\n")
call ap_cpshow (ap)
call printf (" %s = %b\n")
call pargstr (KY_RADPLOTS)
call pargb (itob (apstati (ap, RADPLOTS)))
end
|