comparison OrthancServer/SliceOrdering.cpp @ 1844:1ba224001fd0

remove test
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 30 Nov 2015 13:51:52 +0100
parents 697ae8d0e287
children c8877965d67d
comparison
equal deleted inserted replaced
1843:d10a8164da5f 1844:1ba224001fd0
282 float b = instances_[i]->ComputeRelativePosition(normal_); 282 float b = instances_[i]->ComputeRelativePosition(normal_);
283 283
284 if (std::fabs(b - a) <= 10.0f * std::numeric_limits<float>::epsilon()) 284 if (std::fabs(b - a) <= 10.0f * std::numeric_limits<float>::epsilon())
285 { 285 {
286 // Not enough space between two slices along the normal of the volume 286 // Not enough space between two slices along the normal of the volume
287 printf("Not enough space\n");
288 return false; 287 return false;
289 } 288 }
290 289
291 a = b; 290 a = b;
292 } 291 }