| 35 | |
| 36 | |
| 37 | bool isInRect(const coord2d& pos,const rect2d& rect) |
| 38 | { |
| 39 | if(pos.x>=rect.first.x && pos.y>=rect.first.y && pos.x<rect.second.x && pos.y<rect.second.y) |
| 40 | return true; |
| 41 | return false; |
| 42 | } |
| 43 | |
| 44 | lightingEngineViewscreen::~lightingEngineViewscreen() |
| 45 | { |
no outgoing calls
no test coverage detected