Evil-DICOM icon indicating copy to clipboard operation
Evil-DICOM copied to clipboard

A typo in method bool IsInBounds(Vector3 pt) in RT package

Open RnD4RT opened this issue 3 years ago • 0 comments

private bool IsInBounds(Vector3 pt) { return pt.X >= X0 && pt.X <= XMax && pt.Y >= Y0 && pt.Y <= YMax && pt.Z >= X0 && pt.Z < ZMax; }

it should be

pt.Z >= Z0

Thanks

RnD4RT avatar Oct 22 '20 20:10 RnD4RT