Constructor
| 31 | |
| 32 | // Constructor |
| 33 | Light::Light() |
| 34 | : mDiffuseColor(Color::white()), |
| 35 | mSpecularColor(Color::white()), mIsActive(false) { |
| 36 | |
| 37 | } |
| 38 | |
| 39 | // Constructor |
| 40 | Light::Light(Color diffuseColor, Color specularColor) |
nothing calls this directly
no outgoing calls
no test coverage detected