tcorrected error in forcechains() - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
 (HTM) git clone git://src.adamsgaard.dk/sphere
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 44459e56cb40fe60c971b81b3562ef2baf57dcf4
 (DIR) parent 671efef45dc0ee716e33649b4882ca55297c5890
 (HTM) Author: Anders Damsgaard <adc@geo.au.dk>
       Date:   Mon, 14 Jan 2013 13:01:24 +0100
       
       corrected error in forcechains()
       
       Diffstat:
         M src/sphere.cpp                      |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/src/sphere.cpp b/src/sphere.cpp
       t@@ -526,11 +526,11 @@ void DEM::forcechains()
                    << endl;*/
        
                cout << "path3 g=(" 
       -            << k.x[i].x << ',' << 
       -            << k.x[i].y << ',' << 
       -            << k.x[i].z << ")..(" << 
       -            << k.x[j].x << ',' << 
       -            << k.x[j].y << ',' << 
       +            << k.x[i].x << ','
       +            << k.x[i].y << ',' 
       +            << k.x[i].z << ")..(" 
       +            << k.x[j].x << ',' 
       +            << k.x[j].y << ','
                    << k.x[j].z << "); \n draw(g);" << endl;
            }