Revision: 65179
          http://sourceforge.net/p/brlcad/code/65179
Author:   n_reed
Date:     2015-06-04 17:46:27 +0000 (Thu, 04 Jun 2015)
Log Message:
-----------
fix a mistake in my r64385 that caused some bad linking of overlap curves

Revision Links:
--------------
    http://sourceforge.net/p/brlcad/code/64385

Modified Paths:
--------------
    brlcad/branches/brep-debug/src/libbrep/intersect.cpp

Modified: brlcad/branches/brep-debug/src/libbrep/intersect.cpp
===================================================================
--- brlcad/branches/brep-debug/src/libbrep/intersect.cpp        2015-06-04 
17:40:35 UTC (rev 65178)
+++ brlcad/branches/brep-debug/src/libbrep/intersect.cpp        2015-06-04 
17:46:27 UTC (rev 65179)
@@ -2540,7 +2540,7 @@
 HIDDEN ON_Curve *
 link_curves(ON_Curve *&c1, ON_Curve *&c2)
 {
-    extend_curve_end_to_pt(c1, c2->PointAtEnd(), ON_ZERO_TOLERANCE);
+    extend_curve_end_to_pt(c1, c2->PointAtStart(), ON_ZERO_TOLERANCE);
 
     ON_NurbsCurve *nc1 = c1->NurbsCurve();
     ON_NurbsCurve *nc2 = c2->NurbsCurve();

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


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to