milena r1073: bug fix in line2d.hh

URL: https://svn.lrde.epita.fr/svn/oln/trunk/milena ChangeLog: 2007-09-06 Matthieu Garrigues <garrigues.matthieu@lrde.epita.fr> bug fix in line2d.hh * core/line2d.hh: col = beg_.row() replaced by col = beg_.col(); line2d.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: trunk/milena/mln/core/line2d.hh =================================================================== --- trunk/milena/mln/core/line2d.hh (revision 1072) +++ trunk/milena/mln/core/line2d.hh (revision 1073) @@ -115,7 +115,7 @@ srow = math::sign(dp.row()), drow = math::abs(dp.row()), ddrow = 2 * drow, scol = math::sign(dp.col()), dcol = math::abs(dp.col()), ddcol = 2 * dcol, row = beg_.row(), - col = beg_.row(); + col = beg_.col(); if ( dcol > drow ) { int e = ddrow - dcol;
participants (1)
-
Matthieu Garrigues