/* 1 2 Euclidean distance */ double nf_hypot(const Node *n, const Cell *c) { Node *r = Right(n); return hypot( eval_tree( r, c), eval_tree( r->next, c) ); }