| 57 | } |
| 58 | |
| 59 | CornerPinEffect::CornerPinEffect(const Point& upperLeft, const Point& upperRight, |
| 60 | const Point& lowerRight, const Point& lowerLeft) { |
| 61 | cornerPoints[0] = lowerLeft; |
| 62 | cornerPoints[1] = lowerRight; |
| 63 | cornerPoints[2] = upperLeft; |
| 64 | cornerPoints[3] = upperRight; |
| 65 | calculateVertexQs(); |
| 66 | } |
| 67 | |
| 68 | Rect CornerPinEffect::filterBounds(const Rect&) const { |
| 69 | auto& lowerLeft = cornerPoints[0]; |
nothing calls this directly
no outgoing calls
no test coverage detected