blob: 050e5596c6d6e9918bbfa0cfcb70bdeb9739c9c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "wcspix.h"
# MEF Image class data.
# MEF_INIT -- Initialize the MEF Class module.
procedure mef_init ()
begin
end
# MEF_CACHE -- Cache an image in the object cache.
procedure mef_cache ()
begin
end
# MEF_UNCACHE -- Uncache an image in the object cache.
procedure mef_uncache ()
begin
end
# MEF_WCSTRAN -- Translate object source (x,y) coordinates to the
# desired output WCSs.
procedure mef_wcstran ()
begin
end
# MEF_WCSLIST -- List the WCSs available for the given image.
procedure mef_wcslist ()
begin
end
# MEF_OBJINFO -- Get header information from the image.
procedure mef_objinfo ()
begin
end
|