Revision: 55959
          http://sourceforge.net/p/brlcad/code/55959
Author:   phoenixyjll
Date:     2013-07-05 06:52:25 +0000 (Fri, 05 Jul 2013)
Log Message:
-----------
Remove unused parameter.

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

Modified: brlcad/trunk/src/libbrep/intersect.cpp
===================================================================
--- brlcad/trunk/src/libbrep/intersect.cpp      2013-07-05 06:36:12 UTC (rev 
55958)
+++ brlcad/trunk/src/libbrep/intersect.cpp      2013-07-05 06:52:25 UTC (rev 
55959)
@@ -1713,7 +1713,7 @@
 
 
 void
-closed_domain(int type, const ON_Surface* surfA, const ON_Surface* surfB, 
ON_3dPointArray& curvept, ON_2dPointArray& curveuv, ON_2dPointArray& curvest, 
double intersection_tolerance)
+closed_domain(int type, const ON_Surface* surfA, const ON_Surface* surfB, 
ON_3dPointArray& curvept, ON_2dPointArray& curveuv, ON_2dPointArray& curvest)
 {
     // type =
     // 0: uv.x, 1: uv.y, 2: st.x, 3: st.y
@@ -1980,7 +1980,7 @@
        }
     }
     for (int i = 0; i < 4; i++)
-       closed_domain(i, surfA, surfB, tmp_curvept, tmp_curveuv, tmp_curvest, 
intersection_tolerance);
+       closed_domain(i, surfA, surfB, tmp_curvept, tmp_curveuv, tmp_curvest);
 
     // Use an O(n^2) naive approach to eliminate duplication
     for (int i = 0; i < tmp_curvept.Count(); i++) {

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


------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to