| 61 | ////////////////////////////////////////////////////// |
| 62 | |
| 63 | bool CheckImageData(PyUtilApiFunction& api, PyImage* self) |
| 64 | { |
| 65 | if (self->image_node == nullptr) { |
| 66 | api.error("The Image object does not have image data."); |
| 67 | return false; |
| 68 | } |
| 69 | |
| 70 | return true; |
| 71 | } |
| 72 | |
| 73 | //----------------- |
| 74 | // GetvtkTransform |
no test coverage detected