Using v0.4a2
The following code in CalculateVolume (on line 103 of dvhdata.py) has an off by
one bug since n will never be equal to len(sPlanes):
if ((n == 0) or (n == len(sPlanes))):
...
and should be replaced by
if ((n == 0) or (n == len(sPlanes)-1)):
...
Original issue reported on code.google.com by randle.taylor on 7 Oct 2011 at 3:16
Original issue reported on code.google.com by
randle.taylor
on 7 Oct 2011 at 3:16