Revision: 54527
          http://brlcad.svn.sourceforge.net/brlcad/?rev=54527&view=rev
Author:   indianlarry
Date:     2013-03-04 17:06:14 +0000 (Mon, 04 Mar 2013)
Log Message:
-----------
Need to assign triangle for advancing front tail pointer at front 
initialization.

Modified Paths:
--------------
    brlcad/trunk/src/other/poly2tri/poly2tri/sweep/sweep_context.cc

Modified: brlcad/trunk/src/other/poly2tri/poly2tri/sweep/sweep_context.cc
===================================================================
--- brlcad/trunk/src/other/poly2tri/poly2tri/sweep/sweep_context.cc     
2013-03-04 16:10:50 UTC (rev 54526)
+++ brlcad/trunk/src/other/poly2tri/poly2tri/sweep/sweep_context.cc     
2013-03-04 17:06:14 UTC (rev 54527)
@@ -147,7 +147,7 @@
 
   af_head_ = new Node(*triangle->GetPoint(1), *triangle);
   af_middle_ = new Node(*triangle->GetPoint(0), *triangle);
-  af_tail_ = new Node(*triangle->GetPoint(2));
+  af_tail_ = new Node(*triangle->GetPoint(2), *triangle);
   front_ = new AdvancingFront(*af_head_, *af_tail_);
 
   // TODO: More intuitive if head is middles next and not previous?

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


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to