Revision: 52930
          http://brlcad.svn.sourceforge.net/brlcad/?rev=52930&view=rev
Author:   brlcad
Date:     2012-10-10 02:36:46 +0000 (Wed, 10 Oct 2012)
Log Message:
-----------
looks like they should have used X,Y,Z indices.  looks like an index off-by-one 
bug.

Modified Paths:
--------------
    brlcad/trunk/src/other/openNURBS/opennurbs_beziervolume.cpp

Modified: brlcad/trunk/src/other/openNURBS/opennurbs_beziervolume.cpp
===================================================================
--- brlcad/trunk/src/other/openNURBS/opennurbs_beziervolume.cpp 2012-10-10 
00:39:43 UTC (rev 52929)
+++ brlcad/trunk/src/other/openNURBS/opennurbs_beziervolume.cpp 2012-10-10 
02:36:46 UTC (rev 52930)
@@ -209,7 +209,7 @@
 {
   if ( this != &src ) {
     if ( Create( src.m_dim, src.m_is_rat, 
-         src.m_order[0], src.m_order[1], src.m_order[3] ) )
+         src.m_order[0], src.m_order[1], src.m_order[2] ) )
     {
       const int sizeof_cv = src.CVSize()*sizeof(m_cv[0]);
       int i, j, k;

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


------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to