In image.cpp there are several occurrences of the following
if(fabs(Image->Colour_Map[x].Filter) > EPSILON)
  return false;
if(fabs(Image->Colour_Map[x].Transmit) > EPSILON)
  return false;
As Filter & Transmit are defined as unsigned short it's IMHO useless
to compare the fabs() value against EPSILON.
-- 
Andreas
 
 Post a reply to this message 
 |