Revision: 55637
          http://sourceforge.net/p/brlcad/code/55637
Author:   phoenixyjll
Date:     2013-06-03 13:48:45 +0000 (Mon, 03 Jun 2013)
Log Message:
-----------
remove the unused variable names to quell compiler warnings.

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

Modified: brlcad/trunk/src/libbrep/intersect.cpp
===================================================================
--- brlcad/trunk/src/libbrep/intersect.cpp      2013-06-03 13:43:43 UTC (rev 
55636)
+++ brlcad/trunk/src/libbrep/intersect.cpp      2013-06-03 13:48:45 UTC (rev 
55637)
@@ -64,11 +64,11 @@
  * Point-curve intersections (PCI)
  */
 bool
-ON_Intersect(const ON_3dPoint& pointA,
-            const ON_Curve& curveB,
-            ON_ClassArray<ON_PX_EVENT>& x,
-            double tolerance,
-            const ON_Interval* curveB_domain)
+ON_Intersect(const ON_3dPoint&,
+            const ON_Curve&,
+            ON_ClassArray<ON_PX_EVENT>&,
+            double,
+            const ON_Interval*)
 {
     // Implement later.
     return false;
@@ -78,12 +78,12 @@
  * Point-surface intersections (PSI)
  */
 bool
-ON_Intersect(const ON_3dPoint& pointA,
-            const ON_Surface& surfaceB,
-            ON_ClassArray<ON_PX_EVENT>& x,
-            double tolerance,
-            const ON_Interval* surfaceB_udomain,
-            const ON_Interval* surfaceB_vdomain)
+ON_Intersect(const ON_3dPoint&,
+            const ON_Surface&,
+            ON_ClassArray<ON_PX_EVENT>&,
+            double,
+            const ON_Interval*,
+            const ON_Interval*)
 {
     // Implement later.
     return false;

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


------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to