summaryrefslogtreecommitdiffstats
path: root/src/bltGrElemOp.h
diff options
context:
space:
mode:
authorjoye <joye>2014-03-10 20:29:57 (GMT)
committerjoye <joye>2014-03-10 20:29:57 (GMT)
commitb4eafc000bac06ca2eace24a35f4ab4a72a5c194 (patch)
tree8125a0989a57e8280227e10201ccd6a8500859ac /src/bltGrElemOp.h
parent8e4920de5c68bb7414022f636c2d34540bea151e (diff)
downloadblt-b4eafc000bac06ca2eace24a35f4ab4a72a5c194.zip
blt-b4eafc000bac06ca2eace24a35f4ab4a72a5c194.tar.gz
blt-b4eafc000bac06ca2eace24a35f4ab4a72a5c194.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrElemOp.h')
-rw-r--r--src/bltGrElemOp.h30
1 files changed, 1 insertions, 29 deletions
diff --git a/src/bltGrElemOp.h b/src/bltGrElemOp.h
index ff31811..868f047 100644
--- a/src/bltGrElemOp.h
+++ b/src/bltGrElemOp.h
@@ -117,33 +117,6 @@ typedef struct {
int show; /* Flags for errorbars: none, x, y, or both */
} ErrorBarAttributes;
-typedef struct {
- /* Inputs */
- int halo; /* Maximal screen distance a candidate point
- * can be from the sample window coordinate */
-
- int mode; /* Indicates whether to find the closest data
- * point or the closest point on the trace by
- * interpolating the line segments. Can also
- * be SEARCH_AUTO, indicating to choose how to
- * search.*/
-
- int x, y; /* Screen coordinates of test point */
-
- int along; /* Indicates to let search run along a
- * particular axis: x, y, or both. */
-
- /* Outputs */
- Element* elemPtr; /* Name of the closest element */
-
- Point2d point; /* Graph coordinates of closest point */
-
- int index; /* Index of closest data point */
-
- double dist; /* Distance in screen coordinates */
-
-} ClosestSearch;
-
typedef void (ElementDrawProc) (Graph *graphPtr, Drawable drawable,
Element* elemPtr);
@@ -158,8 +131,7 @@ typedef void (ElementMapProc) (Graph *graphPtr, Element* elemPtr);
typedef void (ElementExtentsProc) (Element* elemPtr, Region2d *extsPtr);
-typedef void (ElementClosestProc) (Graph *graphPtr, Element* elemPtr,
- ClosestSearch *searchPtr);
+typedef void (ElementClosestProc) (Graph *graphPtr, Element* elemPtr);
typedef void (ElementDrawSymbolProc) (Graph *graphPtr, Drawable drawable,
Element* elemPtr, int x, int y, int symbolSize);