Revision: 68984
          http://sourceforge.net/p/brlcad/code/68984
Author:   starseeker
Date:     2016-10-04 19:40:10 +0000 (Tue, 04 Oct 2016)
Log Message:
-----------
double can't hold DBL_MAX*DBL_MAX...

Modified Paths:
--------------
    brlcad/trunk/src/libbg/chull3d.cpp

Modified: brlcad/trunk/src/libbg/chull3d.cpp
===================================================================
--- brlcad/trunk/src/libbg/chull3d.cpp  2016-10-04 14:31:18 UTC (rev 68983)
+++ brlcad/trunk/src/libbg/chull3d.cpp  2016-10-04 19:40:10 UTC (rev 68984)
@@ -1014,7 +1014,7 @@
     simplex *s = NULL;
     simplex *root = NULL;
 
-    if (ZERO(cdata->Huge)) cdata->Huge = DBL_MAX*DBL_MAX;
+    if (ZERO(cdata->Huge)) cdata->Huge = DBL_MAX;
 
     (cdata->cdim) = 0;
     cdata->get_site = get_s;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to