blob: f50fefb6d56042ff6fd6c4d8fa92afd6320b782d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <imhdr.h>
include <imio.h>
# IM_PMSNEV -- Test if a mask image section is nonempty.
bool procedure im_pmsnev (im, vs, ve, ndim)
pointer im #I image descriptor
long vs[IM_MAXDIM] #I vector coordinates of start of section
long ve[IM_MAXDIM] #I vector coordinates of end of section
int ndim #I dimensionality of section
bool pm_sectnotempty()
begin
return (pm_sectnotempty (IM_PL(im), vs, ve, ndim))
end
|