Menu

Bug in bsplinePatchGrid.cpp

2008-07-24
2013-04-25
  • Cedric PAILLE

    Cedric PAILLE - 2008-07-24

    Hi,

    At line 214 (infinite loop):

    for (int j=0;j<vertexDataStep;j) {

    should be:

    for (int j=0;j<vertexDataStep;++j) {

    ;)

    Cheers.

     
    • Okan Arikan

      Okan Arikan - 2008-07-25

          Quite right Cedric, the SVN trunk is fixed.

          Thank you for the bug report.

          Okan

       

Log in to post a comment.