Revision: 56580
          http://sourceforge.net/p/brlcad/code/56580
Author:   carlmoore
Date:     2013-08-05 14:47:20 +0000 (Mon, 05 Aug 2013)
Log Message:
-----------
OK, fixed 'minimum' spelling (although intersect.cpp got other, unrelated 
warning messages); did not find 'mininum' misspelling anywhere else

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

Modified: brlcad/trunk/src/libbrep/intersect.cpp
===================================================================
--- brlcad/trunk/src/libbrep/intersect.cpp      2013-08-05 14:07:37 UTC (rev 
56579)
+++ brlcad/trunk/src/libbrep/intersect.cpp      2013-08-05 14:47:20 UTC (rev 
56580)
@@ -429,9 +429,9 @@
     // Conic fitting (ellipse, parabola, hyperbola)
     // It's only meaningful to fit the curve when it's a complex one
     // For a polyline curve, the number of points should not be less than 10.
-    const int fit_mininum_knots = 10;
+    const int fit_minimum_knots = 10;
     int knotcnt = in->SpanCount();
-    if (knotcnt < fit_mininum_knots)
+    if (knotcnt < fit_minimum_knots)
        return in;
 
     double* knots = new double [knotcnt + 1];

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


------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to