diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/imio/impmsne2.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'sys/imio/impmsne2.x')
-rw-r--r-- | sys/imio/impmsne2.x | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/imio/impmsne2.x b/sys/imio/impmsne2.x new file mode 100644 index 00000000..42cb7141 --- /dev/null +++ b/sys/imio/impmsne2.x @@ -0,0 +1,21 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include <imio.h> + +# IM_PMSNE2 -- Pixel mask section not empty. + +bool procedure im_pmsne2 (im, x1, x2, y1, y2) + +pointer im #I image descriptor +int x1, x2 #I section to be tested +int y1, y2 #I section to be tested + +long vs[2], ve[2] +bool pm_sectnotempty() + +begin + vs[1] = x1; vs[2] = y1 + ve[1] = x2; ve[2] = y2 + + return (pm_sectnotempty (IM_PL(im), vs, ve, 2)) +end |