From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- sys/imio/imgs3.gx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sys/imio/imgs3.gx (limited to 'sys/imio/imgs3.gx') diff --git a/sys/imio/imgs3.gx b/sys/imio/imgs3.gx new file mode 100644 index 00000000..4179c84f --- /dev/null +++ b/sys/imio/imgs3.gx @@ -0,0 +1,29 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include + +# IMGS3? -- Get a section from an apparently three dimensional image. + +pointer procedure imgs3$t (im, x1, x2, y1, y2, z1, z2) + +pointer im +int x1, x2, y1, y2, z1, z2 +long vs[3], ve[3] +pointer imggs$t(), imgl3$t() + +begin + if (x1 == 1 && x2 == IM_LEN(im,1) && y1 == y2 && z1 == z2) + return (imgl3$t (im, y1, z1)) + else { + vs[1] = x1 + ve[1] = x2 + + vs[2] = y1 + ve[2] = y2 + + vs[3] = z1 + ve[3] = z2 + + return (imggs$t (im, vs, ve, 3)) + } +end -- cgit