Closed DrDaleks closed 10 years ago
writing (int) z poses issues when checking lower bounds. For instance, let us assume the ROI3D starts at z=0. Here a call to contains(anyX, anyY, -0.1) will return true because -0.1 is rounded off to 0, while it should return false.
(int) z
contains(anyX, anyY, -0.1)
writing
(int) z
poses issues when checking lower bounds. For instance, let us assume the ROI3D starts at z=0. Here a call tocontains(anyX, anyY, -0.1)
will return true because -0.1 is rounded off to 0, while it should return false.