| 1358 | return rgbf(); |
| 1359 | } |
| 1360 | void lightThread::doRay(const rgbf& power,int cx,int cy,int tx,int ty,int num_diffuse) |
| 1361 | { |
| 1362 | using namespace std::placeholders; |
| 1363 | plotLineDiffuse(cx,cy,tx,ty,power,num_diffuse,std::bind(&lightThread::lightUpCell,this,_1,_2,_3,_4,_5)); |
| 1364 | } |
| 1365 | |
| 1366 | void lightThread::doLight( int x,int y ) |
| 1367 | { |
nothing calls this directly
no test coverage detected