[Insight-developers] itkVersorTest failing on some platforms

Bill Lorensen bill.lorensen at gmail.com
Fri Dec 19 08:19:11 EST 2008


Hans,

The itkVersorTest was failing on some platforms:
http://www.cdash.org/CDash/testSummary.php?project=2&name=itkVersorTest&date=2008-12-19

I tracked it down to:
          itk::Point<double,3> testPoint;
          testPoint[0]=-1020.27;
          testPoint[2]=3.21;
          testPoint[3]=1000.786432;

which I changed to:
          itk::Point<double,3> testPoint;
          testPoint[0]=-1020.27;
          testPoint[1]=3.21;
          testPoint[2]=1000.786432;

I also did some style changes.

Bill


More information about the Insight-developers mailing list