I have a function inside a class that will basically sort an array by the first elements first sub-element (ie. [0][x]) and return the second sub element based on that information.
I am having the hardest time getting it to work. Partially because I feel that it is inside a class. Also I feel like it sorts the sub elements individually whereas I would need to keep the sub-element pairs together. Here is some of the code. Thanks for any help!
//this function will sort all the Pts which are stored in the static var points:Array
public function nearest ():Pt {
var distances:Array = new Array ();
for (var i:Number = 0; i < points.length; i++) {
distances.push ([this.distance (points*), points*]);
}
distances.sortOn (Array.NUMERIC);
var nearest_pt = distances[0][1];
return nearest_pt;
}
//this is the distance function just for your reference
public function distance (pt:Pt):Number {
var tx:Number = pt.x - this.x;
var ty:Number = pt.y - this.y;
return Math.sqrt (tx * tx + ty * ty);
}