From: Evan M. C. <le...@ca...> - 2000-04-13 15:57:09
|
Brian Paul wrote: > if (area * bf < 0 || area * area < .0025) > return; > > Try replacing the .0025 with a smaller value, or zero. > > -Brian Brian, I made the predicate like so: if (area * bf < 0 || area * area <= 0) return; I realize there might still be problems with excessively small areas but for my app this seems to work OK...so far. Thanks for the reply. I _really_ appreciate the quick solution. If I do end up having problems I know where to go to play with the limit. Thanks, -- // Evan M. Carey Camber Corp. // ev...@ca... 4885 Alpha Road, Suite 110 // 972-991-5322 x145 Dallas, TX 75244-4633 // 972-991-5352 fax. www.cambertx.com |