From 416aa1d69b5e0a1ab763ea08c24219ba0f7642a5 Mon Sep 17 00:00:00 2001 From: devicerandom Date: Mon, 2 Mar 2009 15:52:26 +0000 Subject: [PATCH] (libhooke.py) fixed stupid algorithm for finding nearest contact point --- libhooke.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/libhooke.py b/libhooke.py index 8989822..fa69305 100755 --- a/libhooke.py +++ b/libhooke.py @@ -265,7 +265,7 @@ class ClickedPoint: self.dest=None #0 or 1 ; 0=top plot 1=bottom plot - def find_graph_coords(self, xvector, yvector): + def find_graph_coords_old(self, xvector, yvector): ''' Given a clicked point on the plot, finds the nearest point in the dataset (in X) that corresponds to the clicked point. @@ -285,7 +285,19 @@ class ClickedPoint: self.index=best_index self.graph_coords=(xvector[best_index],yvector[best_index]) return + + def find_graph_coords(self,xvector,yvector): + ''' + Given a clicked point on the plot, finds the nearest point in the dataset (in X) that + corresponds to the clicked point. + ''' + dists=[] + for index in scipy.arange(1,len(xvector),1): + dists.append(((self.absolute_coords[0]-xvector[index])**2)+((self.absolute_coords[1]-yvector[index])**2)) + #TODO, generalize? y coordinate is multiplied by 100 due to scale differences in the plot + self.index=dists.index(min(dists)) + self.graph_coords=(xvector[self.index],yvector[self.index]) #----------------------------------------- #CSV-HELPING FUNCTIONS -- 2.26.2