Revision: 41824
          http://brlcad.svn.sourceforge.net/brlcad/?rev=41824&view=rev
Author:   brlcad
Date:     2010-12-29 01:52:48 +0000 (Wed, 29 Dec 2010)

Log Message:
-----------
quell lots of unused errors being ignored.

Modified Paths:
--------------
    brlcad/trunk/src/librt/opennurbs_ext.cpp

Modified: brlcad/trunk/src/librt/opennurbs_ext.cpp
===================================================================
--- brlcad/trunk/src/librt/opennurbs_ext.cpp    2010-12-29 01:51:13 UTC (rev 
41823)
+++ brlcad/trunk/src/librt/opennurbs_ext.cpp    2010-12-29 01:52:48 UTC (rev 
41824)
@@ -773,7 +773,7 @@
 
     BBNode* node;
     if (isLeaf) {
-       vect_t delta;
+/*     vect_t delta; */
 
        VSUB2(min, min, buffer);
        VADD2(max, max, buffer);
@@ -1441,15 +1441,11 @@
        const ON_Surface* surf = m_face->SurfaceOf();
        ON_Interval usurf = surf->Domain(0);
        ON_Interval vsurf = surf->Domain(1);
-       fastf_t ufactor = (u[1] - u[0]) / (usurf[1] - usurf[0]);
-       fastf_t vfactor = (v[1] - v[0]) / (vsurf[1] - vsurf[0]);
        point_t a, b;
        VSET(a, usurf[0], vsurf[0], 0.0);
        VSET(b, usurf[1], vsurf[1], 0.0);
-       double dsurf = DIST_PT_PT(a, b);
        VSET(a, u[0], v[0], 0.0);
        VSET(b, u[1], v[1], 0.0);
-       double dsubsurf = DIST_PT_PT(a, b);
        double uq = u.Length()*0.25;
        double vq = v.Length()*0.25;
        localsurf->FrameAt(u.Mid() - uq, v.Mid() - vq, frames[5]);
@@ -2078,7 +2074,7 @@
 #define SE 4
 
 bool
-SurfaceTree::isFlat(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *m_normals, ON_3dPoint *corners, const ON_Interval& UNUSED(u), 
const ON_Interval& UNUSED(v))
+SurfaceTree::isFlat(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *UNUSED(m_normals), ON_3dPoint *UNUSED(corners), const ON_Interval& 
UNUSED(u), const ON_Interval& UNUSED(v))
 {
        /*
     ON_3dVector normals[8];
@@ -2173,7 +2169,7 @@
 }
 
 bool
-SurfaceTree::isStraight(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *m_normals, ON_3dPoint *corners, const ON_Interval& UNUSED(u), 
const ON_Interval& UNUSED(v))
+SurfaceTree::isStraight(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *UNUSED(m_normals), ON_3dPoint *UNUSED(corners), const ON_Interval& 
UNUSED(u), const ON_Interval& UNUSED(v))
 {
     double Xdot = frames[0].xaxis * frames[1].xaxis;
     Xdot = Xdot * (frames[0].xaxis * frames[2].xaxis);
@@ -2216,7 +2212,7 @@
 }
 
 fastf_t
-SurfaceTree::isFlatU(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *m_normals, ON_3dPoint *corners, const ON_Interval& UNUSED(u), 
const ON_Interval& UNUSED(v))
+SurfaceTree::isFlatU(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *m_normals, ON_3dPoint *UNUSED(corners), const ON_Interval& 
UNUSED(u), const ON_Interval& UNUSED(v))
 {
     fastf_t product = 1.0;
     product *= m_normals[0]*m_normals[1];
@@ -2238,7 +2234,7 @@
 }
 
 fastf_t
-SurfaceTree::isFlatV(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *m_normals, ON_3dPoint *corners, const ON_Interval& UNUSED(u), 
const ON_Interval& UNUSED(v))
+SurfaceTree::isFlatV(const ON_Surface* UNUSED(surf), ON_Plane *frames, 
ON_3dVector *m_normals, ON_3dPoint *UNUSED(corners), const ON_Interval& 
UNUSED(u), const ON_Interval& UNUSED(v))
 {
        fastf_t product = 1.0;
     product *= m_normals[0]*m_normals[3];


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

------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to