File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -233,13 +233,13 @@ vector<double> Illum::cctToxy( const double &cctd ) const
233233 if ( cctd >= 4002.15 && cctd <= 7003.77 )
234234 xy[0 ] =
235235 ( 0.244063 + 99.11 / cctd +
236- 2.9678 * 1000000 / ( std::pow ( cctd, 2 ) )
237- - 4.6070 * 1000000000 / ( std::pow ( cctd, 3 ) ) );
236+ 2.9678 * 1000000 / ( std::pow ( cctd, 2 ) ) -
237+ 4.6070 * 1000000000 / ( std::pow ( cctd, 3 ) ) );
238238 else
239239 xy[0 ] =
240240 ( 0.237040 + 247.48 / cctd +
241- 1.9018 * 1000000 / ( std::pow ( cctd, 2 ) )
242- - 2.0064 * 1000000000 / ( std::pow ( cctd, 3 ) ) );
241+ 1.9018 * 1000000 / ( std::pow ( cctd, 2 ) ) -
242+ 2.0064 * 1000000000 / ( std::pow ( cctd, 3 ) ) );
243243
244244 xy[1 ] = -3.0 * ( std::pow ( xy[0 ], 2 ) ) + 2.87 * xy[0 ] - 0.275 ;
245245
You can’t perform that action at this time.
0 commit comments