| 106 | void SetPosition(double x, double y) override; |
| 107 | VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_REDUNDANT) |
| 108 | void SetPosition(double pos[2]) override { this->SetPosition(pos[0], pos[1]); } |
| 109 | ///@} |
| 110 | |
| 111 | ///@{ |
nothing calls this directly
no test coverage detected