added JGraphT to code folder, seems to be working but it's possible I screwed somethi...
[SugarCubes.git] / DanUtil.pde
index 382cf975c8a36740b4f15079783f657a52e720f1..c3e899033c3d8cd7168caab13efd82e5fe108332 100644 (file)
@@ -250,7 +250,7 @@ class dVertex {
 
        dVertex(Strip _s, LXPoint _p)  { s = _s; ci  = _p.index; }
        LXPoint         getPoint(int i)          { return s.points.get(dir>0 ? i : 15-i);  }
-       void    setOpp(dVertex _opp) { opp = _opp; dir = (ci < opp.ci ? 1 : -1); }
+       void    setOpp( dVertex _opp) { opp = _opp; dir = (ci < opp.ci ? 1 : -1); }
 }
 //----------------------------------------------------------------------------------------------------------------------------------
 class dPixel   { dVertex v; int pos; dPixel(dVertex _v, int _pos) { v=_v; pos=_pos; } }