aboutsummaryrefslogtreecommitdiff
path: root/pkg/xtools/icfit/icgdelete.gx
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/xtools/icfit/icgdelete.gx')
-rw-r--r--pkg/xtools/icfit/icgdelete.gx89
1 files changed, 89 insertions, 0 deletions
diff --git a/pkg/xtools/icfit/icgdelete.gx b/pkg/xtools/icfit/icgdelete.gx
new file mode 100644
index 00000000..1c2a6fd6
--- /dev/null
+++ b/pkg/xtools/icfit/icgdelete.gx
@@ -0,0 +1,89 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <gset.h>
+include <mach.h>
+include <pkg/gtools.h>
+include "icfit.h"
+
+define MSIZE 2. # Mark size
+
+# ICG_DELETE -- Delete data point nearest the cursor.
+# The nearest point to the cursor in NDC coordinates is determined.
+
+procedure icg_delete$t (ic, gp, gt, cv, x, y, wts, userwts, npts, wx, wy)
+
+pointer ic # ICFIT pointer
+pointer gp # GIO pointer
+pointer gt # GTOOLS pointer
+pointer cv # CURFIT pointer
+PIXEL x[npts], y[npts] # Data points
+PIXEL wts[npts], userwts[npts] # Weight arrays
+int npts # Number of points
+real wx, wy # Position to be nearest
+
+int gt_geti()
+pointer sp, xout, yout
+
+begin
+ call smark (sp)
+ call salloc (xout, npts, TY_PIXEL)
+ call salloc (yout, npts, TY_PIXEL)
+
+ call icg_axes$t (ic, gt, cv, 1, x, y, Mem$t[xout], npts)
+ call icg_axes$t (ic, gt, cv, 2, x, y, Mem$t[yout], npts)
+
+ if (gt_geti (gt, GTTRANSPOSE) == NO)
+ call icg_d1$t (ic, gp, Mem$t[xout], Mem$t[yout], wts, userwts,
+ npts, wx, wy)
+ else
+ call icg_d1$t (ic, gp, Mem$t[yout], Mem$t[xout], wts, userwts,
+ npts, wy, wx)
+
+ call sfree (sp)
+end
+
+
+# ICG_D1 -- Do the actual delete.
+
+procedure icg_d1$t (ic, gp, x, y, wts, userwts, npts, wx, wy)
+
+pointer ic # ICFIT pointer
+pointer gp # GIO pointer
+PIXEL x[npts], y[npts] # Data points
+PIXEL wts[npts], userwts[npts] # Weight arrays
+int npts # Number of points
+real wx, wy # Position to be nearest
+
+int i, j
+real x0, y0, r2, r2min
+
+begin
+ # Transform world cursor coordinates to NDC.
+
+ call gctran (gp, wx, wy, wx, wy, 1, 0)
+
+ # Search for nearest point to a point with non-zero weight.
+
+ r2min = MAX_REAL
+ do i = 1, npts {
+ if (wts[i] == 0.)
+ next
+
+ call gctran (gp, real (x[i]), real (y[i]), x0, y0, 1, 0)
+
+ r2 = (x0 - wx) ** 2 + (y0 - wy) ** 2
+ if (r2 < r2min) {
+ r2min = r2
+ j = i
+ }
+ }
+
+ # Mark the deleted point with a cross and set the weight to zero.
+
+ if (j != 0) {
+ call gscur (gp, real (x[j]), real (y[j]))
+ call gmark (gp, real (x[j]), real (y[j]), GM_CROSS, MSIZE, MSIZE)
+ wts[j] = 0.
+ IC_NEWWTS(ic) = YES
+ }
+end