| 100 | : Light(LIGHT_SPOT), P(P), D(D), I(I), angleMin(angleMin), angleMax(angleMax) {} |
| 101 | |
| 102 | SpotLight transform(const AffineSpace3fa& space) const { |
| 103 | return SpotLight(xfmPoint(space,P),xfmVector(space,D),I,angleMin,angleMax); |
| 104 | } |
| 105 | |
| 106 | static SpotLight lerp(const SpotLight& light0, const SpotLight& light1, const float f) |
| 107 | { |
no test coverage detected