metadata
Wenzel Jakob 2011-07-26 21:06:01 +02:00
commit 628dddbe91
1 changed files with 1 additions and 1 deletions

View File

@ -545,7 +545,7 @@ private:
const Float yFrac = Y / y; const Float yFrac = Y / y;
const Float X = yFrac * x; const Float X = yFrac * x;
/* It seems the following is necassary to stay always above zero */ /* It seems the following is necassary to stay always above zero */
const Float z = std::max(0.0f, 1.0f - x - y); const Float z = std::max((Float) 0.0f, 1.0f - x - y);
const Float Z = yFrac * z; const Float Z = yFrac * z;
/* Create spectrum from XYZ values */ /* Create spectrum from XYZ values */