KayaNodeRecord FindRecordInList(List<KayaNodeRecord> list, KayaNode n) { foreach (KayaNodeRecord r in list) { if (r.node.getValue() == n.getValue()) return r; } return null; }
public float estimate(KayaNode t) { return (target - t.getValue()).magnitude; }