| 357 | } |
| 358 | |
| 359 | ImageRotate::ImageRotate( |
| 360 | const std::string& ikey, |
| 361 | double angle, |
| 362 | bool crop, |
| 363 | const std::string& okey) |
| 364 | : ImageTransformOp(ikey, okey), angle_(angle), crop_(crop) {}; |
| 365 | |
| 366 | std::shared_ptr<Array> ImageRotate::apply_image( |
| 367 | const std::shared_ptr<const Array>& image) const { |
nothing calls this directly
no outgoing calls
no test coverage detected