Revision: 55985
          http://sourceforge.net/p/brlcad/code/55985
Author:   phoenixyjll
Date:     2013-07-09 04:50:44 +0000 (Tue, 09 Jul 2013)
Log Message:
-----------
It should be CSI_MAX_ITERATIONS.

Modified Paths:
--------------
    brlcad/trunk/src/libbrep/intersect.cpp

Modified: brlcad/trunk/src/libbrep/intersect.cpp
===================================================================
--- brlcad/trunk/src/libbrep/intersect.cpp      2013-07-09 04:28:09 UTC (rev 
55984)
+++ brlcad/trunk/src/libbrep/intersect.cpp      2013-07-09 04:50:44 UTC (rev 
55985)
@@ -1087,7 +1087,7 @@
 
     int iteration = 0;
     while (fabs(last_t - t) + fabs(last_u - u) + fabs(last_v - v) > 
ON_ZERO_TOLERANCE
-          && iteration++ < CCI_MAX_ITERATIONS) {
+          && iteration++ < CSI_MAX_ITERATIONS) {
        last_t = t, last_u = u, last_v = v;
        ON_3dVector derivA, derivBu, derivBv;
        curveA->Ev1Der(t, pointA, derivA);

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


------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to