/* enorm.h - Euclidean Norm. (Distance) * (C) Copyright 1999 by John Halleck * All rights reserved. */ /* Version of August 16th, 1999 */ #ifndef ENORM #define ENORM 1 /* Find sqrt (X*X + Y*Y) without using square root, and without squaring the * numbers, very accurately and very fast. * This routine won't overflow unless the answer does. */ extern double enorm2 (double X, double Y); #endif