| 50 | } |
| 51 | |
| 52 | std::shared_ptr<CornerPinEffect> CornerPinEffect::Make(const Point& upperLeft, |
| 53 | const Point& upperRight, |
| 54 | const Point& lowerRight, |
| 55 | const Point& lowerLeft) { |
| 56 | return std::make_shared<CornerPinEffect>(upperLeft, upperRight, lowerRight, lowerLeft); |
| 57 | } |
| 58 | |
| 59 | CornerPinEffect::CornerPinEffect(const Point& upperLeft, const Point& upperRight, |
| 60 | const Point& lowerRight, const Point& lowerLeft) { |
nothing calls this directly
no outgoing calls
no test coverage detected