aboutsummaryrefslogtreecommitdiff
path: root/sys/plio/plgplane.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/plio/plgplane.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'sys/plio/plgplane.x')
-rw-r--r--sys/plio/plgplane.x15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/plio/plgplane.x b/sys/plio/plgplane.x
new file mode 100644
index 00000000..3f338178
--- /dev/null
+++ b/sys/plio/plgplane.x
@@ -0,0 +1,15 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <plio.h>
+
+# PL_GETPLANE -- Get the 2-Dim plane to be referenced in calls to the pl_box,
+# pl_circle, etc. geometric region masking operators.
+
+procedure pl_getplane (pl, v)
+
+pointer pl #I mask descriptor
+long v[ARB] #O vector defining plane
+
+begin
+ call amovl (PL_PLANE(pl,1), v, PL_MAXDIM)
+end